From 1c5442b172f402734e7ae060bc0ab6bea335a8f8 Mon Sep 17 00:00:00 2001 From: Thomas Kapocsi Date: Sun, 25 Feb 2024 21:17:52 -0700 Subject: [PATCH] changes --- .github/workflows/update_schema.yml | 35 ----------------------------- 1 file changed, 35 deletions(-) delete mode 100644 .github/workflows/update_schema.yml diff --git a/.github/workflows/update_schema.yml b/.github/workflows/update_schema.yml deleted file mode 100644 index 0085cd2..0000000 --- a/.github/workflows/update_schema.yml +++ /dev/null @@ -1,35 +0,0 @@ -# This workflow will do a clean installation of node dependencies, cache/restore them, build the source code and run tests across different versions of node -# For more information see: https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-nodejs - -name: Node.js CI - -on: - push: - branches: ["master", "auth"] - pull_request: - branches: ["master"] - -jobs: - build: - runs-on: ubuntu-latest - - strategy: - matrix: - node-version: [21.5.x] - - steps: - - uses: actions/checkout@v3 - - name: Use Node.js ${{ matrix.node-version }} - uses: actions/setup-node@v3 - with: - node-version: ${{ matrix.node-version }} - cache: "npm" - - run: | - echo "DATABASE_HOST=${{ secrets.DATABASE_HOST }}" >> .env - echo "DATABASE_NAME=${{ secrets.DATABASE_NAME }}" >> .env - echo "DATABASE_USERNAME=${{ secrets.DATABASE_USERNAME }}" >> .env - echo "DATABASE_PASSWORD=${{ secrets.DATABASE_PASSWORD }}" >> .env - - run: | - npm ci - npm i tsx - npx tsx db/migrate.ts