Skip to content

Commit

Permalink
ci: fix wait-on in ci workflow to call via npx
Browse files Browse the repository at this point in the history
  • Loading branch information
timonmasberg committed May 9, 2023
1 parent e024eeb commit a06d44a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ jobs:
- name: Start and prepare MongoDB for E2Es
run: ./tools/db/kordis-db.sh init e2edb
- name: Run E2Es
run: npm run serve:all:prod & (wait-on tcp:3000 && wait-on http://localhost:4200 && npx nx e2e spa-e2e)
run: npm run serve:all:prod & (npx wait-on tcp:3000 && npx wait-on http://localhost:4200 && npx nx e2e spa-e2e)
env:
E2E_BASE_URL: http://localhost:4200/

Expand Down

0 comments on commit a06d44a

Please sign in to comment.