26
26
- name : install xvfb
27
27
run : |
28
28
sudo apt-get install xvfb
29
- - run : npm ci
29
+ - run : npm install
30
30
# XVFB-RUN merges both STDOUT and STDERR, whereas we need only STDERR
31
31
# Wrap `npm run` in a subshell to redirect STDERR to file.
32
32
- run : xvfb-run --auto-servernum -- bash -c "npm run ccoverage 2>./chromium-linux-testrun.log"
55
55
with :
56
56
node-version : 10
57
57
- uses : microsoft/playwright-github-action@v1
58
- - run : npm ci
58
+ - run : npm install
59
59
- run : npm run ctest 2>./chromium-mac-testrun.log
60
60
env :
61
61
DEBUG : " *"
82
82
with :
83
83
node-version : 10
84
84
- uses : microsoft/playwright-github-action@v1
85
- - run : npm ci
85
+ - run : npm install
86
86
- run : npm run ctest 2>./chromium-win-testrun.log
87
87
shell : bash
88
88
env :
@@ -113,7 +113,7 @@ jobs:
113
113
- name : install xvfb
114
114
run : |
115
115
sudo apt-get install xvfb
116
- - run : npm ci
116
+ - run : npm install
117
117
# XVFB-RUN merges both STDOUT and STDERR, whereas we need only STDERR
118
118
# Wrap `npm run` in a subshell to redirect STDERR to file.
119
119
- run : xvfb-run --auto-servernum -- bash -c "npm run wcoverage 2>./webkit-linux-testrun.log"
@@ -142,7 +142,7 @@ jobs:
142
142
with :
143
143
node-version : 10
144
144
- uses : microsoft/playwright-github-action@v1
145
- - run : npm ci
145
+ - run : npm install
146
146
- run : npm run wtest 2>./webkit-mac-testrun.log
147
147
env :
148
148
DEBUG : " *,-pw:wrapped*"
@@ -169,7 +169,7 @@ jobs:
169
169
with :
170
170
node-version : 10
171
171
- uses : microsoft/playwright-github-action@v1
172
- - run : npm ci
172
+ - run : npm install
173
173
- run : npm run wtest 2>./webkit-win-testrun.log
174
174
shell : bash
175
175
env :
@@ -200,7 +200,7 @@ jobs:
200
200
- name : install xvfb
201
201
run : |
202
202
sudo apt-get install xvfb
203
- - run : npm ci
203
+ - run : npm install
204
204
# XVFB-RUN merges both STDOUT and STDERR, whereas we need only STDERR
205
205
# Wrap `npm run` in a subshell to redirect STDERR to file.
206
206
- run : xvfb-run --auto-servernum -- bash -c "npm run fcoverage 2>./firefox-linux-testrun.log"
@@ -229,7 +229,7 @@ jobs:
229
229
with :
230
230
node-version : 10
231
231
- uses : microsoft/playwright-github-action@v1
232
- - run : npm ci
232
+ - run : npm install
233
233
- run : npm run ftest 2>./firefox-mac-testrun.log
234
234
env :
235
235
DEBUG : " *"
@@ -256,7 +256,7 @@ jobs:
256
256
with :
257
257
node-version : 10
258
258
- uses : microsoft/playwright-github-action@v1
259
- - run : npm ci
259
+ - run : npm install
260
260
- run : npm run ftest 2>./firefox-win-testrun.log
261
261
shell : bash
262
262
env :
@@ -285,5 +285,5 @@ jobs:
285
285
# we use in `installation-tests.sh`.
286
286
node-version : 12
287
287
- uses : microsoft/playwright-github-action@v1
288
- - run : npm ci
288
+ - run : npm install
289
289
- run : bash test/installation-tests/installation-tests.sh
0 commit comments