Skip to content

Commit f6aa5bb

Browse files
committed
chore: remove npx aegir
1 parent 8f04f0c commit f6aa5bb

File tree

1 file changed

+7
-8
lines changed
  • .github/ISSUE_TEMPLATE/workflows

1 file changed

+7
-8
lines changed

.github/ISSUE_TEMPLATE/workflows/main.yml

Lines changed: 7 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -16,9 +16,8 @@ jobs:
1616
- run: npm install
1717
- run: npm run lint
1818
- uses: gozala/typescript-error-reporter-action@v1.0.8
19-
- run: npx aegir build
20-
- run: npx aegir dep-check -- -- -- -p
21-
- run: npx aegir dep-check -- -- -- -- --unused
19+
- run: npm run depcheck -- -- -- -p
20+
- run: npm run depcheck -- -- -- -- --unused
2221
test-node:
2322
needs: check
2423
runs-on: ${{ matrix.os }}
@@ -34,7 +33,7 @@ jobs:
3433
node-version: ${{ matrix.node }}
3534
- run: npm install -g npm@latest
3635
- run: npm install
37-
- run: npx nyc --reporter=lcov aegir test -t node -- --bail
36+
- run: npx nyc -s npm run test -- -- -- -t node --bail
3837
- uses: codecov/codecov-action@v1
3938
test-chrome:
4039
needs: check
@@ -43,28 +42,28 @@ jobs:
4342
- uses: actions/checkout@v2
4443
- run: npm install -g npm@latest
4544
- run: npm install
46-
- run: npx aegir test -t browser -t webworker --bail
45+
- run: npm run test -- -- -- -t browser -t webworker --bail
4746
test-firefox:
4847
needs: check
4948
runs-on: ubuntu-latest
5049
steps:
5150
- uses: actions/checkout@v2
5251
- run: npm install -g npm@latest
5352
- run: npm install
54-
- run: npx aegir test -t browser -t webworker --bail -- --browsers FirefoxHeadless
53+
- run: npm run test -- -- -- -t browser -t webworker --bail -- --browsers FirefoxHeadless
5554
test-electron-main:
5655
needs: check
5756
runs-on: ubuntu-latest
5857
steps:
5958
- uses: actions/checkout@v2
6059
- run: npm install -g npm@latest
6160
- run: npm install
62-
- run: npx xvfb-maybe aegir test -t electron-main --bail
61+
- run: npx xvfb-maybe npm run test -- -- -- -t electron-main --bail
6362
test-electron-renderer:
6463
needs: check
6564
runs-on: ubuntu-latest
6665
steps:
6766
- uses: actions/checkout@v2
6867
- run: npm install -g npm@latest
6968
- run: npm install
70-
- run: npx xvfb-maybe aegir test -t electron-renderer --bail
69+
- run: npx xvfb-maybe npm run test -- -- -- -t electron-renderer --bail

0 commit comments

Comments
 (0)