diff --git a/.github/workflows/deploy.yml b/.github/workflows/deploy.yml index c90c32bc8..f6971df25 100644 --- a/.github/workflows/deploy.yml +++ b/.github/workflows/deploy.yml @@ -76,50 +76,10 @@ jobs: - name: ⚡ Run vitest run: npm run test -- --coverage - cypress: - name: ⚫️ Cypress - runs-on: ubuntu-latest - steps: - - name: ⬇️ Checkout repo - uses: actions/checkout@v4 - - - name: 🏄 Copy test env vars - run: cp .env.example .env - - - name: ⎔ Setup node - uses: actions/setup-node@v4 - with: - cache: npm - cache-dependency-path: ./package.json - node-version: 18 - - - name: 📥 Install deps - run: npm install - - - name: 🐳 Docker compose - # the sleep is just there to give time for postgres to get started - run: docker compose up -d && sleep 3 - env: - DATABASE_URL: "postgresql://postgres:postgres@localhost:5432/postgres" - - - name: 🛠 Setup Database - run: npx prisma migrate reset --force - - - name: ⚙️ Build - run: npm run build - - - name: 🌳 Cypress run - uses: cypress-io/github-action@v6 - with: - start: npm run start:mocks - wait-on: http://localhost:8811 - env: - PORT: 8811 - deploy: name: 🚀 Deploy runs-on: ubuntu-latest - needs: [lint, typecheck, vitest, cypress] + needs: [lint, typecheck, vitest] # only deploy main/dev branch on pushes if: ${{ (github.ref == 'refs/heads/main' || github.ref == 'refs/heads/dev') && github.event_name == 'push' }}