File tree Expand file tree Collapse file tree 3 files changed +11
-5
lines changed Expand file tree Collapse file tree 3 files changed +11
-5
lines changed Original file line number Diff line number Diff line change 3030 working-directory : packages/e2e-tests
3131 steps :
3232 - uses : actions/checkout@v4
33- - uses : actions/setup-node@v4
33+ - name : Install pnpm
34+ uses : pnpm/action-setup@v4
35+ - name : Install Node.js
36+ uses : actions/setup-node@v4
3437 with :
3538 node-version : 20
3639 cache : ' pnpm'
@@ -53,10 +56,12 @@ jobs:
5356 - uses : actions/setup-node@v4
5457 with :
5558 node-version : lts/*
59+ - name : Install dependencies
60+ run : npm install -g pnpm && pnpm install
5661 - name : Install Playwright Browsers
57- run : pnpmx playwright install --with-deps
62+ run : pnpm exec playwright install --with-deps
5863 - name : Run Playwright Tests
59- run : pnpmx playwright test
64+ run : pnpm exec playwright test
6065 - uses : actions/upload-artifact@v4
6166 id : playwright-report-artifact
6267 if : ${{ !cancelled() }}
Original file line number Diff line number Diff line change 66 "devDependencies" : {
77 "@biomejs/biome" : " 1.7.3" ,
88 "@playwright/test" : " ^1.44.0" ,
9- "@types/node" : " ^20.12.12"
9+ "@types/node" : " ^20.14.11" ,
10+ "typescript" : " ^5.7.2"
1011 },
1112 "scripts" : {
1213 "install" : " playwright install" ,
Original file line number Diff line number Diff line change @@ -2,4 +2,4 @@ packages:
22 - " app"
33 - " packages/ui"
44 - " packages/go-ui-storybook"
5- - " e23 -tests"
5+ - " packages/e2e -tests"
You can’t perform that action at this time.
0 commit comments