Skip to content

Commit

Permalink
ci
Browse files Browse the repository at this point in the history
  • Loading branch information
kamilkisiela committed Apr 19, 2024
1 parent 1a12743 commit 4637887
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -22,10 +22,14 @@ jobs:
run: npm ci

- name: subgraphs
run: npm run dev && npx wait-on http-get://localhost:4200 --timeout 5s --verbose
run: |
npm run dev &
npx wait-on http-get://localhost:4200 --timeout 5s --verbose
- name: gateway
run: npm run gateway && npx wait-on http-get://localhost:4000 --timeout 5s --verbose
run: |
npm run gateway &
npx wait-on http-get://localhost:4000 --timeout 5s --verbose
- name: test
run: npm run test-all

0 comments on commit 4637887

Please sign in to comment.