Skip to content

Commit 30a4554

Browse files
committedJan 21, 2021
Fix tests.
1 parent 361772a commit 30a4554

File tree

1 file changed

+8
-5
lines changed

1 file changed

+8
-5
lines changed
 

‎.github/workflows/main.yml

+8-5
Original file line numberDiff line numberDiff line change
@@ -17,8 +17,8 @@ jobs:
1717
node-version: ${{ matrix.node-version }}
1818
- name: Install
1919
run: npm install
20-
- name: Fetch test suite
21-
run: npm run fetch-test-suite
20+
- name: Fetch test suites
21+
run: npm run fetch-test-suites
2222
- name: Run test with Node.js ${{ matrix.node-version }}
2323
run: npm run test-node
2424
test-karma:
@@ -33,7 +33,10 @@ jobs:
3333
uses: actions/setup-node@v1
3434
with:
3535
node-version: ${{ matrix.node-version }}
36-
- run: npm install
36+
- name: Install
37+
run: npm install
38+
- name: Fetch test suites
39+
run: npm run fetch-test-suites
3740
- name: Run karma tests
3841
run: npm run test-karma
3942
lint:
@@ -66,8 +69,8 @@ jobs:
6669
node-version: ${{ matrix.node-version }}
6770
- name: Install
6871
run: npm install
69-
- name: Fetch test suite
70-
run: npm run fetch-test-suite
72+
- name: Fetch test suites
73+
run: npm run fetch-test-suites
7174
- name: Generate coverage report
7275
run: npm run coverage-ci
7376
- name: Upload coverage to Codecov

0 commit comments

Comments
 (0)
Please sign in to comment.