@@ -12,13 +12,12 @@ jobs:
12
12
runs-on : ubuntu-latest
13
13
steps :
14
14
- uses : actions/checkout@v2
15
- - run : yarn
16
- - run : yarn lint
17
-
18
- # - run: yarn build
19
- - run : yarn aegir dep-check
15
+ - run : npm install
16
+ - run : npx aegir lint
17
+ - run : npx aegir ts -p check
18
+ # - run: npx aegir build
19
+ - run : npx aegir dep-check
20
20
# - uses: ipfs/aegir/actions/bundle-size@master
21
- # name: size
22
21
# with:
23
22
# github_token: ${{ secrets.GITHUB_TOKEN }}
24
23
test-node :
@@ -27,41 +26,52 @@ jobs:
27
26
strategy :
28
27
matrix :
29
28
os : [windows-latest, ubuntu-latest, macos-latest]
30
- node : [12, 14]
29
+ node : [14]
31
30
fail-fast : true
32
31
steps :
33
32
- uses : actions/checkout@v2
34
33
- uses : actions/setup-node@v1
35
34
with :
36
35
node-version : ${{ matrix.node }}
37
- - run : yarn
38
- - run : npx nyc --reporter=lcov aegir test -t node -- --bail
36
+ - run : npm install
37
+ - run : npx aegir test -t node --bail --cov
39
38
- uses : codecov/codecov-action@v1
40
- test-chrome :
41
- needs : check
42
- runs-on : ubuntu-latest
43
- steps :
44
- - uses : actions/checkout@v2
45
- - run : yarn
46
- - run : npx aegir test -t browser -t webworker --bail
47
- test-firefox :
48
- needs : check
49
- runs-on : ubuntu-latest
50
- steps :
51
- - uses : actions/checkout@v2
52
- - run : yarn
53
- - run : npx aegir test -t browser -t webworker --bail -- --browsers FirefoxHeadless
54
- test-electron-main :
55
- needs : check
56
- runs-on : ubuntu-latest
57
- steps :
58
- - uses : actions/checkout@v2
59
- - run : yarn
60
- - run : npx xvfb-maybe aegir test -t electron-main --bail
61
- test-electron-renderer :
62
- needs : check
63
- runs-on : ubuntu-latest
64
- steps :
65
- - uses : actions/checkout@v2
66
- - run : yarn
67
- - run : npx xvfb-maybe aegir test -t electron-renderer --bail
39
+ # test-chrome:
40
+ # needs: check
41
+ # runs-on: ubuntu-latest
42
+ # steps:
43
+ # - uses: actions/checkout@v2
44
+ # - uses: microsoft/playwright-github-action@v1
45
+ # - run: npm install
46
+ # - run: npx aegir test -t browser -t webworker --bail --cov
47
+ # - uses: codecov/codecov-action@v1
48
+ # test-firefox:
49
+ # needs: check
50
+ # runs-on: ubuntu-latest
51
+ # steps:
52
+ # - uses: actions/checkout@v2
53
+ # - uses: microsoft/playwright-github-action@v1
54
+ # - run: npm install
55
+ # - run: npx aegir test -t browser -t webworker --bail -- --browser firefox
56
+ # test-webkit:
57
+ # needs: check
58
+ # runs-on: ubuntu-latest
59
+ # steps:
60
+ # - uses: actions/checkout@v2
61
+ # - uses: microsoft/playwright-github-action@v1
62
+ # - run: npm install
63
+ # - run: npx aegir test -t browser -t webworker --bail -- --browser webkit
64
+ # test-electron-main:
65
+ # needs: check
66
+ # runs-on: ubuntu-latest
67
+ # steps:
68
+ # - uses: actions/checkout@v2
69
+ # - run: npm install
70
+ # - run: npx xvfb-maybe aegir test -t electron-main --bail
71
+ # test-electron-renderer:
72
+ # needs: check
73
+ # runs-on: ubuntu-latest
74
+ # steps:
75
+ # - uses: actions/checkout@v2
76
+ # - run: npm install
77
+ # - run: npx xvfb-maybe aegir test -t electron-renderer --bail
0 commit comments