37
37
# XVFB-RUN merges both STDOUT and STDERR, whereas we need only STDERR
38
38
# Wrap `npm run` in a subshell to redirect STDERR to file.
39
39
# Enable core dumps in the subshell.
40
- - run : xvfb-run --auto-servernum -- bash -c "ulimit -c unlimited && npm run coverage 2>./${{ matrix.browser }}-linux- testrun.log"
40
+ - run : xvfb-run --auto-servernum -- bash -c "ulimit -c unlimited && npm run coverage 2>./testrun.log"
41
41
env :
42
42
BROWSER : ${{ matrix.browser }}
43
43
DEBUG : " *,-pw:wrapped*"
50
50
if : failure()
51
51
with :
52
52
name : ${{ matrix.browser }}-linux-testrun.log
53
- path : ${{ matrix.browser }}-linux- testrun.log
53
+ path : testrun.log
54
54
- uses : actions/upload-artifact@v1
55
55
if : failure()
56
56
with :
@@ -189,7 +189,7 @@ jobs:
189
189
# XVFB-RUN merges both STDOUT and STDERR, whereas we need only STDERR
190
190
# Wrap `npm run` in a subshell to redirect STDERR to file.
191
191
# Enable core dumps in the subshell.
192
- - run : xvfb-run --auto-servernum -- bash -c "ulimit -c unlimited && npm run test 2>./channel-linux- testrun.log"
192
+ - run : xvfb-run --auto-servernum -- bash -c "ulimit -c unlimited && npm run test 2>./testrun.log"
193
193
env :
194
194
BROWSER : ${{ matrix.browser }}
195
195
DEBUG : " *,-pw:wrapped*"
@@ -200,15 +200,15 @@ jobs:
200
200
- uses : actions/upload-artifact@v1
201
201
if : failure()
202
202
with :
203
- name : channel -linux-output
204
- path : test/output-channel
203
+ name : rpc-${{ matrix.browser }} -linux-output
204
+ path : test/output-${{ matrix.browser }}
205
205
- uses : actions/upload-artifact@v1
206
206
if : failure()
207
207
with :
208
- name : channel -linux-testrun.log
209
- path : channel-linux- testrun.log
208
+ name : rpc-${{ matrix.browser }} -linux-testrun.log
209
+ path : testrun.log
210
210
- uses : actions/upload-artifact@v1
211
211
if : failure()
212
212
with :
213
- name : channel -linux-coredumps
213
+ name : rpc-${{ matrix.browser }} -linux-coredumps
214
214
path : coredumps
0 commit comments