fix: use npm for install

This commit is contained in:
Marc Diaz
2026-04-07 13:05:27 -04:00
parent b65c68d139
commit 33609432e1
2 changed files with 2 additions and 1 deletions
+1 -1
View File
@@ -41,7 +41,7 @@ jobs:
node-version: 22
cache: npm
- run: npm ci
- run: npx playwright install --with-deps chromium-headless-shell
- run: npm run test:browser:install
- run: npm run test:browser
build:
+1
View File
@@ -27,6 +27,7 @@
"test:watch": "vitest",
"build-vite": "tsc && vite build",
"test:browser": "vitest --config vitest.browser.config.ts --run",
"test:browser:install": "playwright install --with-deps chromium-headless-shell",
"test:e2e": "playwright test",
"prepare": "husky"
},