Skip to content
Open
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
7 changes: 2 additions & 5 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,16 +3,13 @@ on: [push, pull_request]
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
node: [ 24 ]
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Use Nodejs
- name: Get node.js
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node }} # https://github.com/actions/setup-node#matrix-testing
node-version: "24.17.0"
- name: Install node_modules
run: npm install
- name: Test contracts
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/npm-publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ jobs:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: 24.12.0
node-version: 24.17.0
registry-url: https://registry.npmjs.org/

- name: Install dependencies
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/security-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:
- name: Get node.js
uses: actions/setup-node@v4
with:
node-version: "24.12.0"
node-version: "24.17.0"
- run: npm install
- run: npx solhint "contracts/**/*.sol"

Expand All @@ -23,7 +23,7 @@ jobs:
- name: Get node.js
uses: actions/setup-node@v4
with:
node-version: "24.12.0"
node-version: "24.17.0"
cache: "npm"
- run: npm ci
- run: npx hardhat compile
Expand Down
2 changes: 1 addition & 1 deletion .nvmrc
Original file line number Diff line number Diff line change
@@ -1 +1 @@
v24.12.0
v24.17.0
Loading
Loading