Skip to content

Commit c5918b5

Browse files
authored
Migrate byor to node v22 (#65)
Signed-off-by: Konrad <arukopay@gmail.com>
1 parent 27d0259 commit c5918b5

File tree

4 files changed

+9
-8
lines changed

4 files changed

+9
-8
lines changed

.github/workflows/ci.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414
- uses: actions/checkout@v3
1515
- uses: actions/setup-node@v3
1616
with:
17-
node-version: 18.x
17+
node-version: 22.x
1818
cache: 'yarn'
1919
- run: yarn --frozen-lockfile
2020
- run: yarn build:dependencies
@@ -38,7 +38,7 @@ jobs:
3838
- uses: actions/checkout@v3
3939
- uses: actions/setup-node@v3
4040
with:
41-
node-version: 18.x
41+
node-version: 22.x
4242
cache: 'yarn'
4343
- run: yarn --frozen-lockfile
4444
- run: yarn build:dependencies
@@ -52,7 +52,7 @@ jobs:
5252
- uses: actions/checkout@v3
5353
- uses: actions/setup-node@v3
5454
with:
55-
node-version: 18.x
55+
node-version: 22.x
5656
cache: 'yarn'
5757
- run: yarn --frozen-lockfile
5858
- run: yarn build:dependencies
@@ -64,7 +64,7 @@ jobs:
6464
- uses: actions/checkout@v3
6565
- uses: actions/setup-node@v3
6666
with:
67-
node-version: 18.x
67+
node-version: 22.x
6868
cache: 'yarn'
6969
- run: yarn --frozen-lockfile
7070
- run: yarn build:dependencies

.nvmrc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
18
1+
22

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ For more details about the architecture, see [here](./ARCHITECTURE.md).
1717

1818
Install the following:
1919

20-
- node v18
20+
- node v22
2121
- [yarn](https://classic.yarnpkg.com/lang/en/docs/install/)
2222
- [foundry](https://book.getfoundry.sh/getting-started/installation)
2323
- Postgresql. We recommend running it through docker for local development.

package.json

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
"private": true,
44
"license": "MIT",
55
"engines": {
6-
"node": "^18.0.0"
6+
"node": "^22.0.0"
77
},
88
"scripts": {
99
"start": "cd packages/node && yarn start",
@@ -42,5 +42,6 @@
4242
"dependencies": {
4343
"esbuild": "^0.17.18",
4444
"esbuild-register": "^3.4.2"
45-
}
45+
},
46+
"packageManager": "yarn@1.22.22+sha512.a6b2f7906b721bba3d67d4aff083df04dad64c399707841b7acf00f6b133b7ac24255f2652fa22ae3534329dc6180534e98d17432037ff6fd140556e2bb3137e"
4647
}

0 commit comments

Comments
 (0)