File tree Expand file tree Collapse file tree 1 file changed +10
-5
lines changed
Expand file tree Collapse file tree 1 file changed +10
-5
lines changed Original file line number Diff line number Diff line change @@ -25,11 +25,13 @@ jobs:
2525 with :
2626 node-version : 18
2727 cache : ' npm'
28- - uses : microsoft/playwright-github-action@v1
2928 - name : Install dependencies
3029 run : |
313032- npm install
31+ npm ci
32+ - name : Install Playwright
33+ run : |
34+ npx playwright install --with-deps chromium firefox webkit
3335 npm install -g @web/test-runner
3436 - name : Run tests
3537 run : npm test
@@ -42,11 +44,13 @@ jobs:
4244 with :
4345 node-version : 18
4446 cache : ' npm'
45- - uses : microsoft/playwright-github-action@v1
4647 - name : Install dependencies
4748 run : |
484949- npm install
50+ npm ci
51+ - name : Install Playwright
52+ run : |
53+ npx playwright install --with-deps chromium firefox webkit
5054 npm install -g @web/test-runner
5155 - name : Run tests
5256 run : npm test
6771 node-version : ' 18'
6872 registry-url : ' https://registry.npmjs.org'
6973 cache : ' npm'
70- - run : npm install
74+ - name : Install dependencies
75+ run : npm ci
7176 - name : Read version from package.json
7277 uses : culshaw/read-package-node-version-actions@v1
7378 id : package-node-version
You can’t perform that action at this time.
0 commit comments