Skip to content

Commit

Permalink
cicd: Always run all of the smoke tests.
Browse files Browse the repository at this point in the history
  • Loading branch information
Codex- committed Aug 26, 2022
1 parent d855daa commit 1b8e39d
Showing 1 changed file with 6 additions and 3 deletions.
9 changes: 6 additions & 3 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,11 +30,14 @@ jobs:
id: test
if: ${{ always() }}
run: npm run test
- name: CJS import
- name: Import with CJS
if: ${{ always() }}
run: node smoke-tests/smoke-test-cjs.js
- name: ESM import
- name: Import with ESM
if: ${{ always() }}
run: node smoke-tests/smoke-test-esm.mjs
- name: CJS and ESM import from CJS
- name: Import with both CJS and ESM
if: ${{ always() }}
run: node smoke-tests/smoke-test.js
- name: lint
if: ${{ always() }}
Expand Down

0 comments on commit 1b8e39d

Please sign in to comment.