Skip to content

Commit a0bd3f8

Browse files
authored
chore: update dependencies (#19)
1 parent 3124743 commit a0bd3f8

File tree

3 files changed

+7362
-14108
lines changed

3 files changed

+7362
-14108
lines changed

.github/workflows/main.yml

+47-37
Original file line numberDiff line numberDiff line change
@@ -12,13 +12,12 @@ jobs:
1212
runs-on: ubuntu-latest
1313
steps:
1414
- uses: actions/checkout@v2
15-
- run: yarn
16-
- run: yarn lint
17-
- uses: gozala/[email protected]
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
2020
# - uses: ipfs/aegir/actions/bundle-size@master
21-
# name: size
2221
# with:
2322
# github_token: ${{ secrets.GITHUB_TOKEN }}
2423
test-node:
@@ -27,41 +26,52 @@ jobs:
2726
strategy:
2827
matrix:
2928
os: [windows-latest, ubuntu-latest, macos-latest]
30-
node: [12, 14]
29+
node: [14]
3130
fail-fast: true
3231
steps:
3332
- uses: actions/checkout@v2
3433
- uses: actions/setup-node@v1
3534
with:
3635
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
3938
- 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

Comments
 (0)