Skip to content

Commit 809ee65

Browse files
committed
wip
1 parent 095b385 commit 809ee65

File tree

3 files changed

+5
-3
lines changed

3 files changed

+5
-3
lines changed

.github/workflows/tests.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff 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()

package.json

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,9 @@
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",

0 commit comments

Comments
 (0)