Skip to content

Commit

Permalink
ci: fix playwright install (#5319)
Browse files Browse the repository at this point in the history
  • Loading branch information
hi-ogawa committed Mar 1, 2024
1 parent 074450e commit e4f2cec
Show file tree
Hide file tree
Showing 4 changed files with 34 additions and 34 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/ci.yml
Expand Up @@ -77,7 +77,7 @@ jobs:
run: pnpm i

- name: Install Playwright Dependencies
run: pnpx playwright install --with-deps
run: pnpm exec playwright install --with-deps

- name: Build
run: pnpm run build
Expand Down Expand Up @@ -130,7 +130,7 @@ jobs:
run: pnpm i

- name: Install Playwright Dependencies
run: pnpx playwright install chromium
run: pnpm exec playwright install chromium

- name: Build
run: pnpm run build
Expand Down Expand Up @@ -163,7 +163,7 @@ jobs:
run: pnpm i

- name: Install Playwright Dependencies
run: pnpx playwright install --with-deps
run: pnpm exec playwright install --with-deps

- name: Build
run: pnpm run build
Expand Down Expand Up @@ -201,7 +201,7 @@ jobs:
run: pnpm i

- name: Install Playwright Dependencies
run: pnpx playwright install --with-deps
run: pnpm exec playwright install --with-deps

- name: Build
run: pnpm run build
Expand Down
1 change: 1 addition & 0 deletions package.json
Expand Up @@ -40,6 +40,7 @@
"devDependencies": {
"@antfu/eslint-config": "^2.6.4",
"@antfu/ni": "^0.21.12",
"@playwright/test": "^1.41.0",
"@rollup/plugin-commonjs": "^25.0.7",
"@rollup/plugin-json": "^6.0.1",
"@rollup/plugin-node-resolve": "^15.2.3",
Expand Down
58 changes: 29 additions & 29 deletions pnpm-lock.yaml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 0 additions & 1 deletion test/ui/package.json
Expand Up @@ -7,7 +7,6 @@
"test-fixtures": "vitest"
},
"devDependencies": {
"@playwright/test": "^1.41.0",
"@testing-library/dom": "^9.3.3",
"happy-dom": "latest",
"vitest": "workspace:*"
Expand Down

0 comments on commit e4f2cec

Please sign in to comment.