Skip to content

Commit 7f142e4

Browse files
guguclaude
andcommitted
fix: install Playwright browsers in GitHub Actions
Add step to install Playwright browsers before running tests. Also add setup-node with Node.js 24. Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
1 parent b388f6a commit 7f142e4

1 file changed

Lines changed: 5 additions & 0 deletions

File tree

.github/workflows/frontend.yml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,12 @@ jobs:
1111
runs-on: ubuntu-latest
1212
steps:
1313
- uses: actions/checkout@v2
14+
- uses: actions/setup-node@v3
15+
with:
16+
node-version: '24'
1417
- run: cd frontend && yarn install
18+
- name: Install Playwright browsers
19+
run: cd frontend && yarn playwright install
1520
- name: run tests
1621
run: cd frontend && yarn test
1722
license:

0 commit comments

Comments
 (0)