Skip to content

Commit

Permalink
Re-enable tests on old Node.js versions
Browse files Browse the repository at this point in the history
  • Loading branch information
nicolo-ribaudo committed Nov 24, 2021
1 parent 885800d commit ad65f36
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Expand Up @@ -146,7 +146,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [16, 14, 12]
node-version: [16, 14, 12, 10, 8, 6]
steps:
- name: Checkout code
uses: actions/checkout@v2
Expand Down
2 changes: 1 addition & 1 deletion jest.config.js
Expand Up @@ -2,7 +2,7 @@ const supportsESM = parseInt(process.versions.node) >= 12;
const isPublishBundle = process.env.IS_PUBLISH;

module.exports = {
runner: "./test/jest-light-runner",
runner: supportsESM ? "./test/jest-light-runner" : "jest-runner",

collectCoverageFrom: [
"packages/*/src/**/*.{js,mjs,ts}",
Expand Down

0 comments on commit ad65f36

Please sign in to comment.