Skip to content

Commit

Permalink
ci: install only necessary playwright browsers
Browse files Browse the repository at this point in the history
  • Loading branch information
carsakiller committed Oct 11, 2023
1 parent fa4578b commit 522bdb6
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ jobs:
if: steps.npm-cache.outputs.cache-hit != 'true'
run: npm ci
- name: Install Playwright Browsers
run: npx playwright install --with-deps
run: npx playwright install --with-deps chromium firefox
- name: Run Playwright tests
run: npx playwright test
- uses: actions/upload-artifact@v3
Expand Down Expand Up @@ -66,7 +66,7 @@ jobs:
if: steps.npm-cache.outputs.cache-hit != 'true'
run: npm ci
- name: Install Playwright (for MermaidJS)
run: npx playwright install
run: npx playwright install --with-deps chromium
- name: Build Website
run: npm run build
- name: Upload Built Website
Expand Down

0 comments on commit 522bdb6

Please sign in to comment.