Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ jobs:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: 20.19.2
node-version: 22.18.0
- run: yarn install
- run: yarn build

2 changes: 1 addition & 1 deletion .github/workflows/lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,6 @@ jobs:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: 20.19.2
node-version: 22.18.0
- run: yarn install
- run: yarn lint-check
8 changes: 4 additions & 4 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,16 +25,16 @@ jobs:
id: release
uses: manovotny/[email protected]

# Perform installs, run tests, run a build step, etc. here, as needed.
- run: yarn

# Setup .npmrc file to publish to npm
- uses: actions/setup-node@v3
with:
node-version: "20.19.2"
node-version: "22.18"
always-auth: true
registry-url: "https://registry.npmjs.org"

# Perform installs, run tests, run a build step, etc. here, as needed.
- run: yarn

# The last two steps will publish the package. Note that we're using
# information from the `release` step above (I told you we'd use it
# later). Notice the `if` statements on both steps...
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ jobs:
solana_version: ${{ steps.extract-versions.outputs.solana_version }}
- uses: actions/setup-node@v3
with:
node-version: 20.19.2
node-version: 22.18
- run: yarn install
- run: yarn test
env:
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
"src"
],
"engines": {
"node": ">=20.19.2"
"node": ">=22.18"
},
"scripts": {
"build-bigint-buffer": "node scripts/build-bigint-buffer.js",
Expand Down
Loading