Skip to content
This repository was archived by the owner on Jun 26, 2023. It is now read-only.

Commit 6997a8a

Browse files
committed
chore: use npm on ci
1 parent eb16409 commit 6997a8a

File tree

1 file changed

+7
-7
lines changed

1 file changed

+7
-7
lines changed

.github/workflows/main.yml

+7-7
Original file line numberDiff line numberDiff line change
@@ -12,11 +12,11 @@ jobs:
1212
runs-on: ubuntu-latest
1313
steps:
1414
- uses: actions/checkout@v2
15-
- run: yarn
16-
- run: yarn lint
15+
- run: npm install
16+
- run: npx aegir lint
1717
- uses: gozala/[email protected]
18-
- run: yarn build
19-
- run: yarn aegir dep-check
18+
- run: npx aegir build
19+
- run: npx aegir aegir dep-check
2020
- uses: ipfs/aegir/actions/bundle-size@master
2121
name: size
2222
with:
@@ -34,20 +34,20 @@ jobs:
3434
- uses: actions/setup-node@v1
3535
with:
3636
node-version: ${{ matrix.node }}
37-
- run: yarn
37+
- run: npm install
3838
- run: npx nyc --reporter=lcov aegir test -t node -- --bail
3939
- uses: codecov/codecov-action@v1
4040
test-chrome:
4141
needs: check
4242
runs-on: ubuntu-latest
4343
steps:
4444
- uses: actions/checkout@v2
45-
- run: yarn
45+
- run: npm install
4646
- run: npx aegir test -t browser -t webworker --bail
4747
test-firefox:
4848
needs: check
4949
runs-on: ubuntu-latest
5050
steps:
5151
- uses: actions/checkout@v2
52-
- run: yarn
52+
- run: npm install
5353
- run: npx aegir test -t browser -t webworker --bail -- --browsers FirefoxHeadless

0 commit comments

Comments
 (0)