Skip to content

Commit c65818e

Browse files
committed
Merge branch 'main' into jestify
2 parents 740ea33 + 02f0f49 commit c65818e

File tree

3 files changed

+362
-503
lines changed

3 files changed

+362
-503
lines changed

.github/workflows/CI.yml

+7-10
Original file line numberDiff line numberDiff line change
@@ -10,20 +10,17 @@ jobs:
1010
test:
1111
runs-on: ubuntu-latest
1212
strategy:
13+
fail-fast: false
1314
matrix:
14-
node-version: [
15-
# Do not support --experimental-require-module
16-
# Commented until we have a solution to run tests without it
17-
# 14.x,
18-
# 16.x,
19-
# 18.x,
20-
# 20.x,
21-
22.x,
22-
]
15+
# Do not support --experimental-require-module
16+
# Commented until we have a solution to run tests without it
17+
# node: [14, 16, 18, 20, 22]
18+
# node: [20, 22] // fails on 20 with (0 , _getDomain.default) is not a function
19+
node: [22]
2320
steps:
2421
- uses: actions/checkout@v4
2522

26-
- name: Use Node.js ${{ matrix.node-version }}
23+
- name: Use Node.js ${{ matrix.node }}
2724
uses: actions/setup-node@v4
2825
with:
2926
node-version: ${{ matrix.node }}

ava.config.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ export default {
2020
],
2121
},
2222
},
23-
// nodeArguments: ["--experimental-require-module"],
23+
nodeArguments: ["--experimental-require-module"],
2424
files: [
2525
"packages/**/test.js",
2626
"packages/**/test/*.js",

0 commit comments

Comments
 (0)