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:
25
25
with :
26
26
node-version : 18
27
27
cache : ' npm'
28
- - uses : microsoft/playwright-github-action@v1
29
28
- name : Install dependencies
30
29
run : |
31
30
32
- npm install
31
+ npm ci
32
+ - name : Install Playwright
33
+ run : |
34
+ npx playwright install --with-deps chromium firefox webkit
33
35
npm install -g @web/test-runner
34
36
- name : Run tests
35
37
run : npm test
@@ -42,11 +44,13 @@ jobs:
42
44
with :
43
45
node-version : 18
44
46
cache : ' npm'
45
- - uses : microsoft/playwright-github-action@v1
46
47
- name : Install dependencies
47
48
run : |
48
49
49
- npm install
50
+ npm ci
51
+ - name : Install Playwright
52
+ run : |
53
+ npx playwright install --with-deps chromium firefox webkit
50
54
npm install -g @web/test-runner
51
55
- name : Run tests
52
56
run : npm test
67
71
node-version : ' 18'
68
72
registry-url : ' https://registry.npmjs.org'
69
73
cache : ' npm'
70
- - run : npm install
74
+ - name : Install dependencies
75
+ run : npm ci
71
76
- name : Read version from package.json
72
77
uses : culshaw/read-package-node-version-actions@v1
73
78
id : package-node-version
You can’t perform that action at this time.
0 commit comments