We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8072bb1 commit c919dbcCopy full SHA for c919dbc
.github/workflows/ci.yml
@@ -9,6 +9,10 @@ on:
9
branches:
10
- master
11
12
+env:
13
+ # we call `pnpm playwright install` instead
14
+ PLAYWRIGHT_SKIP_BROWSER_DOWNLOAD: '1'
15
+
16
jobs:
17
# "checks" job runs on linux + 16 only and checks that install, build, lint and audit work
18
# it also primes the pnpm store cache for linux, important for downstream tests
@@ -81,5 +85,7 @@ jobs:
81
85
cache-dependency-path: '**/pnpm-lock.yaml'
82
86
- name: install
83
87
run: pnpm install --frozen-lockfile --prefer-offline
88
+ - name: install playwright chromium
89
+ run: pnpm playwright install chromium
84
90
- name: run tests
91
run: pnpm test
0 commit comments