Skip to content

Commit

Permalink
Downgrade to Node 22.1
Browse files Browse the repository at this point in the history
  • Loading branch information
mkrause committed May 19, 2024
1 parent cff6cac commit b06c6f5
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/nodejs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ jobs:

strategy:
matrix:
node-version: [22.x]
node-version: [22.1]

steps:
- uses: actions/checkout@v4
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@
"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:integration": "bash ./tests/integration/run_integration_tests.sh",
"test:integration": "./tests/integration/run_integration_tests.sh",
"test": "npm run test:unit && npm run test:integration",
"test-watch": "node --import=tsx --test --test-reporter=spec --watch tests",
"_build": "NODE_ENV=production babel src --extensions=.ts,.tsx --delete-dir-on-start",
Expand Down
1 change: 1 addition & 0 deletions tests/integration/run_integration_tests.sh
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
#!/usr/bin/env bash
set -euo pipefail

# Get the path to the current directory (works in both bash and zsh)
Expand Down

0 comments on commit b06c6f5

Please sign in to comment.