change playwright ci to use pnpm

This commit is contained in:
2025-06-28 02:45:06 +02:00
parent 7f48a085bf
commit 3b135a64b5
8 changed files with 3271 additions and 5962 deletions

View File

@ -18,9 +18,11 @@
"prisma:push:force": "prisma db push --force-reset",
"prisma:studio": "prisma studio",
"start": "node server.mjs",
"test": "vitest run",
"test:watch": "vitest",
"test:coverage": "vitest run --coverage",
"test": "concurrently 'vitest run' 'playwright test'",
"test:coverage": "concurrently \"vitest run --coverage\" \"echo 'To add playwright coverage thingy'\"",
"test:vitest": "vitest run",
"test:vitest:watch": "vitest",
"test:vitest:coverage": "vitest run --coverage",
"lint:md": "markdownlint-cli2 \"**/*.md\" \"!.trunk/**\" \"!.venv/**\" \"!node_modules/**\"",
"lint:md:fix": "markdownlint-cli2 --fix \"**/*.md\" \"!.trunk/**\" \"!.venv/**\" \"!node_modules/**\""
},
@ -77,6 +79,7 @@
"@typescript-eslint/parser": "^8.35.0",
"@vitejs/plugin-react": "^4.6.0",
"@vitest/coverage-v8": "^3.2.4",
"concurrently": "^9.2.0",
"eslint": "^9.30.0",
"eslint-config-next": "^15.3.4",
"eslint-plugin-prettier": "^5.5.1",