Skip to content

Commit

Permalink
fix: start server & run tests in same stage
Browse files Browse the repository at this point in the history
  • Loading branch information
jlczapski committed Apr 22, 2024
1 parent ffeb1cd commit 4729f63
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,10 +27,10 @@ jobs:
run: pnpm install
- name: Install Playwright browsers
run: npx playwright install --with-deps
- name: Start local server
run: pnpm run start
- name: Run playwright tests
run: npx playwright test
run: |
pnpm run start
npx playwright test
- uses: actions/upload-artifact@v4
if: ${{ !cancelled() }}
with:
Expand Down

0 comments on commit 4729f63

Please sign in to comment.