Skip to content

Commit

Permalink
install first, run later
Browse files Browse the repository at this point in the history
  • Loading branch information
soulgalore committed May 23, 2024
1 parent ccc78e2 commit 598a048
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions .github/workflows/linux.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,8 +27,12 @@ jobs:
- name: Start dependencies
run: docker-compose -f docker-compose.yml up -d
- name: Start the server
run: node server/app.js &
run: |
npm install --prefix server
node server/app.js &
- name: Start the testrunner
run: node testrunner/app.js &
run: |
npm install --prefix testrunner
node testrunner/app.js &
- name: Add a test
run: sitespeed.io https://www.sitespeed.io -n 1 --api.hostname 127.0.0.1 --api.location default

0 comments on commit 598a048

Please sign in to comment.