Skip to content

Commit ed5a055

Browse files
authored
Merge pull request #150 from form8ion/beta
2 parents e05e53c + b699663 commit ed5a055

File tree

3 files changed

+8
-5
lines changed

3 files changed

+8
-5
lines changed

.github/workflows/node-ci.yml

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,8 +20,10 @@ jobs:
2020
strategy:
2121
matrix:
2222
node:
23-
- 18.17.0
24-
- 20.6.1
23+
- 18.19.0
24+
- 20.9.0
25+
- 22.11.0
26+
- 23
2527
steps:
2628
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
2729
- name: Setup node
@@ -41,6 +43,7 @@ jobs:
4143
node-version-file: .nvmrc
4244
cache: npm
4345
- run: npm clean-install
46+
- run: npm install --global corepack@latest
4447
- run: corepack npm audit signatures
4548
- run: npm test
4649
- uses: codecov/codecov-action@13ce06bfc6bbe3ecf90edbbf1bc32fe5978ca1d3 # v5.3.1

package-lock.json

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
"version": "0.0.0-semantically-released",
66
"type": "module",
77
"engines": {
8-
"node": "^18.17 || >=20.6.1"
8+
"node": "^18.19.0 || ^20.9.0 || >=22.11.0"
99
},
1010
"author": "Matt Travi <npm@travi.org> (https://matt.travi.org)",
1111
"repository": "form8ion/git",
@@ -32,7 +32,7 @@
3232
"lint:peer": "npm ls >/dev/null",
3333
"pretest:integration:base": "run-s build",
3434
"test:integration": "run-s 'test:integration:base -- --profile noWip'",
35-
"test:integration:base": "NODE_OPTIONS=\"--loader=testdouble --enable-source-maps\" DEBUG=any cucumber-js test/integration",
35+
"test:integration:base": "NODE_OPTIONS=--enable-source-maps DEBUG=any cucumber-js test/integration",
3636
"test:integration:debug": "DEBUG=test run-s test:integration",
3737
"test:integration:wip": "run-s 'test:integration:base -- --profile wip'",
3838
"test:integration:wip:debug": "DEBUG=test run-s 'test:integration:wip'",

0 commit comments

Comments
 (0)