Skip to content

Commit

Permalink
Bump node version to 18.10.0
Browse files Browse the repository at this point in the history
Also use the same node version consistently across local dev, CI and
production environments.

Signed-off-by: Rūdolfs Ošiņš <rudolfs@osins.org>
  • Loading branch information
rudolfs committed Sep 30, 2022
1 parent 78101ef commit d843b6a
Show file tree
Hide file tree
Showing 9 changed files with 9 additions and 9 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/check-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ jobs:
- name: Setup Node
uses: actions/setup-node@v1
with:
node-version: '18.9.0'
node-version: '18.10.0'
- uses: actions/checkout@v2
- run: npm ci
- run: npm run build
2 changes: 1 addition & 1 deletion .github/workflows/check-format.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ jobs:
- name: Setup Node
uses: actions/setup-node@v1
with:
node-version: '18.9.0'
node-version: '18.10.0'
- uses: actions/checkout@v2
- run: npm ci
- run: ./scripts/check-format
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/check-integration-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ jobs:
- name: Setup Node
uses: actions/setup-node@v1
with:
node-version: '18.9.0'
node-version: '18.10.0'
- name: Checkout
uses: actions/checkout@v2
- name: Cypress run
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/check-unit-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ jobs:
- name: Setup Node
uses: actions/setup-node@v1
with:
node-version: '18.9.0'
node-version: '18.10.0'
- name: Checkout
uses: actions/checkout@v2
- run: npm ci
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/check.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ jobs:
- name: Setup Node
uses: actions/setup-node@v1
with:
node-version: '18.9.0'
node-version: '18.10.0'
- uses: actions/checkout@v2
- run: npm ci
- run: npm run check
2 changes: 1 addition & 1 deletion .nvmrc
Original file line number Diff line number Diff line change
@@ -1 +1 @@
18.9.0
18.10.0
2 changes: 1 addition & 1 deletion .tool-versions
Original file line number Diff line number Diff line change
@@ -1 +1 @@
nodejs 18.9.0
nodejs 18.10.0
2 changes: 1 addition & 1 deletion package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
},
"type": "module",
"engines": {
"node": ">=18"
"node": ">=18.10.0"
},
"devDependencies": {
"@rsksmart/mock-web3-provider": "^1.0.1",
Expand Down

0 comments on commit d843b6a

Please sign in to comment.