Skip to content

Commit

Permalink
single-pool-js: fix test job
Browse files Browse the repository at this point in the history
  • Loading branch information
2501babe committed Nov 9, 2023
1 parent 4e1c483 commit af3beb1
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/pull-request-single-pool.yml
Original file line number Diff line number Diff line change
Expand Up @@ -118,7 +118,7 @@ jobs:
js-test:
runs-on: ubuntu-latest
env:
NODE_VERSION: 20
NODE_VERSION: 20.5
needs: cargo-test-sbf
steps:
- uses: actions/checkout@v2
Expand Down
2 changes: 1 addition & 1 deletion single-pool/js/packages/classic/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
"build": "rm -fr dist/* && tsc -p tsconfig.json && tsc -p tsconfig-cjs.json && ./ts-fixup.sh",
"lint": "eslint --max-warnings 0 .",
"lint:fix": "eslint . --fix",
"test": "sed -i '1s/.*/{ \"type\": \"module\",/' package.json && NODE_OPTIONS='--loader=tsx' ava ; sed -i '1s/.*/{/' package.json"
"test": "sed -i '1s/.*/{ \"type\": \"module\",/' package.json && NODE_OPTIONS='--loader=tsx' ava ; ret=$?; sed -i '1s/.*/{/' package.json && exit $ret"
},
"devDependencies": {
"@types/node": "^20.9.0",
Expand Down

0 comments on commit af3beb1

Please sign in to comment.