Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix Playwright Test Github action #1883

Closed
wants to merge 2 commits into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .github/workflows/playwright-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ jobs:

steps:
- name: Checkout code
uses: actions/checkout@v2
uses: actions/checkout@v3

- name: pnpm-setup
uses: pnpm/action-setup@v4
Expand All @@ -45,4 +45,4 @@ jobs:
run: pnpx playwright install --with-deps

- name: Run Playwright tests
run: pnpm run test
run: pnpm run test:ci
3 changes: 2 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,8 @@
"db:seed": "prisma db seed",
"i-changed-the-schema": "pnpm run db:push && pnpm run db:generate",
"postinstall": "pnpm db:generate && pnpm exec playwright install",
"stylelint": "NODE_OPTIONS=--no-deprecation stylelint \"**/*.css\""
"stylelint": "NODE_OPTIONS=--no-deprecation stylelint \"**/*.css\"",
"test:ci": "svelte-kit sync && playwright test --reporter=dot"
},
"devDependencies": {
"@codecov/sveltekit-plugin": "0.0.1-beta.12",
Expand Down
Loading