Skip to content

Commit d515a7e

Browse files
committed
Fix GH CI
1 parent b9d92dc commit d515a7e

File tree

1 file changed

+3
-6
lines changed

1 file changed

+3
-6
lines changed

.github/workflows/test.yml

+3-6
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ jobs:
99
strategy:
1010
matrix:
1111
latest-node-version: [20.x]
12-
node-version: [18.x, 20.x]
12+
node-version: [6.x, 8.x, 10.x, 12.x, 14.x, 16.x, 18.x, 20.x]
1313

1414
steps:
1515
- uses: actions/checkout@v1
@@ -21,14 +21,11 @@ jobs:
2121
run: |
2222
npm install
2323
npm run build
24-
npm run test:coverage
24+
npm run test:only
2525
- name: Switch to Node.js ${{ matrix.node-version }}
2626
uses: actions/setup-node@v1
2727
with:
2828
node-version: ${{ matrix.node-version }}
2929
- name: Test legacy node
3030
run: |
31-
npm install [email protected]
32-
npm run test:only
33-
env:
34-
CI: true
31+
node dist/gen-mapping.umd.js

0 commit comments

Comments
 (0)