Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit 1b8e39d

Browse files
committedAug 26, 2022
cicd: Always run all of the smoke tests.
1 parent d855daa commit 1b8e39d

File tree

1 file changed

+6
-3
lines changed

1 file changed

+6
-3
lines changed
 

‎.github/workflows/build.yml

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -30,11 +30,14 @@ jobs:
3030
id: test
3131
if: ${{ always() }}
3232
run: npm run test
33-
- name: CJS import
33+
- name: Import with CJS
34+
if: ${{ always() }}
3435
run: node smoke-tests/smoke-test-cjs.js
35-
- name: ESM import
36+
- name: Import with ESM
37+
if: ${{ always() }}
3638
run: node smoke-tests/smoke-test-esm.mjs
37-
- name: CJS and ESM import from CJS
39+
- name: Import with both CJS and ESM
40+
if: ${{ always() }}
3841
run: node smoke-tests/smoke-test.js
3942
- name: lint
4043
if: ${{ always() }}

0 commit comments

Comments
 (0)
Please sign in to comment.