File tree Expand file tree Collapse file tree 3 files changed +5
-3
lines changed
Expand file tree Collapse file tree 3 files changed +5
-3
lines changed Original file line number Diff line number Diff line change @@ -117,10 +117,10 @@ jobs:
117117 - name : Install Playwright and dependencies
118118 run : |
119119 pnpm install
120- pnpx playwright install --with-deps
120+ pnpm run tests: install
121121
122122 - name : Run Playwright tests
123- run : npx playwright test
123+ run : pnpm run tests
124124
125125 - name : Upload test results
126126 if : always()
Original file line number Diff line number Diff line change 22 "private" : true ,
33 "scripts" : {
44 "dev" : " tailwindcss -i resources/css/settings.css -o build/css/settings.css --watch" ,
5- "build" : " tailwindcss build -i resources/css/settings.css -o build/css/settings.css"
5+ "build" : " tailwindcss build -i resources/css/settings.css -o build/css/settings.css" ,
6+ "test:install" : " playwright install --with-deps" ,
7+ "test" : " playwright test"
68 },
79 "devDependencies" : {
810 "@playwright/test" : " ^1.52.0" ,
File renamed without changes.
You can’t perform that action at this time.
0 commit comments