Skip to content

Commit

Permalink
Downgrade to Node 20 to prevent segfault in GitHub Actions.
Browse files Browse the repository at this point in the history
  • Loading branch information
mkrause committed May 19, 2024
1 parent 2e3939a commit 001a1f9
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .nvmrc
Original file line number Diff line number Diff line change
@@ -1 +1 @@
22
20.9
3 changes: 2 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,8 @@
"repl": "tsx",
"node": "node --import=tsx",
"check:types": "tsc --noEmit && echo 'No type errors found'",
"test:unit": "node --import=tsx --test --test-reporter=spec \"**/*.test.ts\" # Note: glob requires Node v22",
"//test:unit": "node --import=tsx --test --test-reporter=spec \"**/*.test.ts\" # Note: glob requires Node v22",
"test:unit": "find {src,test} -name \"*.test.ts\" -exec node --import=tsx --test --test-reporter=spec {} ';'",
"test:integration": "./tests/integration/run_integration_tests.sh",
"test": "npm run test:integration # && npm run test:unit",
"test-watch": "node --import=tsx --test --test-reporter=spec --watch tests",
Expand Down

0 comments on commit 001a1f9

Please sign in to comment.