File tree 2 files changed +5
-4
lines changed
2 files changed +5
-4
lines changed Original file line number Diff line number Diff line change 14
14
- uses : actions/checkout@v2
15
15
- run : npm install
16
16
- run : npx aegir lint
17
- - run : npx aegir ts -p check
17
+
18
18
- run : npx aegir build
19
19
- run : npx aegir dep-check
20
20
- uses : ipfs/aegir/actions/bundle-size@master
35
35
with :
36
36
node-version : ${{ matrix.node }}
37
37
- run : npm install
38
- - run : npx nyc --reporter=lcov aegir test -t node -- --bail
38
+ - run : npx aegir test -t node --cov --bail
39
39
- uses : codecov/codecov-action@v1
40
40
test-chrome :
41
41
needs : check
50
50
steps :
51
51
- uses : actions/checkout@v2
52
52
- run : npm install
53
- - run : npx aegir test -t browser -t webworker --bail -- --browsers FirefoxHeadless
53
+ - run : npx aegir test -t browser -t webworker --bail -- --browser firefox
54
54
test-ts :
55
55
needs : check
56
56
runs-on : ubuntu-latest
Original file line number Diff line number Diff line change @@ -58,7 +58,8 @@ describe('ping', () => {
58
58
if ( firstInvocation ) {
59
59
firstInvocation = false
60
60
61
- for await ( const data of stream ) { // eslint-disable-line
61
+ // eslint-disable-next-line no-unreachable-loop
62
+ for await ( const data of stream ) {
62
63
return {
63
64
value : data ,
64
65
done : false
You can’t perform that action at this time.
0 commit comments