Skip to content

Commit

Permalink
Merge branch 'main' into jestify
Browse files Browse the repository at this point in the history
  • Loading branch information
sonnyp committed Dec 20, 2024
2 parents 740ea33 + 02f0f49 commit c65818e
Show file tree
Hide file tree
Showing 3 changed files with 362 additions and 503 deletions.
17 changes: 7 additions & 10 deletions .github/workflows/CI.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,20 +10,17 @@ jobs:
test:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
node-version: [
# Do not support --experimental-require-module
# Commented until we have a solution to run tests without it
# 14.x,
# 16.x,
# 18.x,
# 20.x,
22.x,
]
# Do not support --experimental-require-module
# Commented until we have a solution to run tests without it
# node: [14, 16, 18, 20, 22]
# node: [20, 22] // fails on 20 with (0 , _getDomain.default) is not a function
node: [22]
steps:
- uses: actions/checkout@v4

- name: Use Node.js ${{ matrix.node-version }}
- name: Use Node.js ${{ matrix.node }}
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node }}
Expand Down
2 changes: 1 addition & 1 deletion ava.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ export default {
],
},
},
// nodeArguments: ["--experimental-require-module"],
nodeArguments: ["--experimental-require-module"],
files: [
"packages/**/test.js",
"packages/**/test/*.js",
Expand Down
Loading

0 comments on commit c65818e

Please sign in to comment.