Skip to content

Commit

Permalink
Attempt to fix server tests
Browse files Browse the repository at this point in the history
  • Loading branch information
markspolakovs committed Aug 26, 2024
1 parent 64cefb0 commit ab64569
Showing 1 changed file with 8 additions and 1 deletion.
9 changes: 8 additions & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,14 @@ jobs:
working-directory: ./server

- name: Migrate database
run: yarn prisma:migrateProd
run: |
yarn prisma:migrateProd
- name: Retart services
run: |
docker compose -f docker-compose.yml -f docker-compose-rc-test.yml restart server jobrunner
curl --connect-timeout 1 --retry 25 --retry-delay 2 -fsS -o/dev/null http://localhost:3000
curl --connect-timeout 1 --retry 25 --retry-delay 2 -fsS -o/dev/null http://localhost:28342
- name: Run Playwright tests
run: yarn ${{ runner.debug && 'test:e2e:debug' || 'test:e2e' }}
Expand Down

0 comments on commit ab64569

Please sign in to comment.