Skip to content

Commit d4cfc21

Browse files
authored
Merge pull request #1025 from lukso-network/fix/build-error-nodejs
fix: repair build error to re-trigger previously failed release
2 parents f0cb559 + 2e6ee3d commit d4cfc21

File tree

33 files changed

+65
-85
lines changed

33 files changed

+65
-85
lines changed

.github/workflows/benchmark.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -33,10 +33,10 @@ jobs:
3333
ref: ${{ github.event.pull_request.base.sha }}
3434
fetch-depth: 0
3535

36-
- name: Use Node.js v20
36+
- name: Use Node.js v22
3737
uses: actions/setup-node@v4
3838
with:
39-
node-version: "20.x"
39+
node-version: "22.x"
4040
cache: "npm"
4141

4242
- name: 📦 Install dependencies

.github/workflows/build-lint-test.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,10 +12,10 @@ jobs:
1212
- uses: actions/checkout@v4
1313

1414
# See supported Node.js release schedule at https://nodejs.org/en/about/releases/
15-
- name: Use Node.js v20
15+
- name: Use Node.js v22
1616
uses: actions/setup-node@v4
1717
with:
18-
node-version: "20.x"
18+
node-version: "22.x"
1919
cache: "npm"
2020

2121
- name: 📦 Install dependencies

.github/workflows/coverage.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,10 +22,10 @@ jobs:
2222
steps:
2323
- uses: actions/checkout@v4
2424

25-
- name: Use Node.js v20.x
25+
- name: Use Node.js v22.x
2626
uses: actions/setup-node@v4
2727
with:
28-
node-version: "20.x"
28+
node-version: "22.x"
2929
cache: "npm"
3030

3131
- name: Install dependencies

.github/workflows/deploy-verify.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,10 +25,10 @@ jobs:
2525
steps:
2626
- uses: actions/checkout@v4
2727

28-
- name: Use Node.js v20
28+
- name: Use Node.js v22
2929
uses: actions/setup-node@v4
3030
with:
31-
node-version: "20.x"
31+
node-version: "22.x"
3232
cache: "npm"
3333

3434
- name: Install dependencies

.github/workflows/release.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -34,11 +34,11 @@ jobs:
3434
- uses: actions/checkout@v4
3535
if: ${{ steps.release.outputs.releases_created }}
3636

37-
- name: Use Node.js v20
37+
- name: Use Node.js v22
3838
uses: actions/setup-node@v4
3939
if: ${{ steps.release.outputs.releases_created }}
4040
with:
41-
node-version: "20.x"
41+
node-version: "22.x"
4242
registry-url: "https://registry.npmjs.org"
4343
scope: "@lukso"
4444
cache: "npm"

.tool-versions

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
nodejs 20
1+
nodejs 22.13.1

package-lock.json

Lines changed: 28 additions & 28 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

packages/lsp-smart-contracts/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ npm install @lukso/lsp-smart-contracts
1212

1313
### in Javascript
1414

15-
You can use the contracts JSON ABI by importing them as follow:
15+
The JSON ABIs of the smart contracts can be imported as follow:
1616

1717
```javascript
1818
import LSP0ERC725Account from "@lukso/lsp-smart-contracts/artifacts/LSP0ERC725Account.json";

packages/lsp0-contracts/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ npm install @lukso/lsp0-contracts
1010

1111
## Available Constants & Types
1212

13-
The `@lukso/lsp0-contracts` npm package contains useful constants such as interface Ids, and ERC725Y data keys related to the LSP0 Standard. You can import and access them as follows.
13+
The `@lukso/lsp0-contracts` npm package contains useful constants such as interface IDs, and ERC725Y data keys related to the LSP0 Standard. You can import and access them as follows.
1414

1515
In Javascript.
1616

packages/lsp1-contracts/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ npm install @lukso/lsp1-contracts
1010

1111
## Available Constants & Types
1212

13-
The `@lukso/lsp1-contracts` npm package contains useful constants such as interface IDs, and ERC725Y data keys related to the LSP1 Standard. You can import and access them as follows.
13+
The `@lukso/lsp1-contracts` npm package contains useful constants such as interface IDs, and ERC725Y data keys related to the LSP1 Standard. You can import and access them as follow.
1414

1515
In Javascript.
1616

0 commit comments

Comments
 (0)