Skip to content

Commit

Permalink
fix: Remove extra playwright install
Browse files Browse the repository at this point in the history
  • Loading branch information
megahertz committed May 11, 2024
1 parent 353d540 commit 7719659
Showing 1 changed file with 3 additions and 4 deletions.
7 changes: 3 additions & 4 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,18 +10,17 @@ jobs:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: 18

- run: npm install
- run: npm ci --prefix e2e/cra
- run: npx --prefix e2e/cra playwright install chromium

- run: npm test

- run: npx playwright install --with-deps
- run: npx --prefix e2e/cra playwright install chromium --with-deps
- run: npm run test:e2e

- uses: actions/upload-artifact@v3
Expand Down

0 comments on commit 7719659

Please sign in to comment.