Skip to content

Commit c6fe109

Browse files
committed
Upgrade to NodeJs 20.13.1 to match GraalJS 24.1.2
Signed-off-by: Florian Hotze <[email protected]>
1 parent 27edb5d commit c6fe109

File tree

3 files changed

+10
-10
lines changed

3 files changed

+10
-10
lines changed

.github/workflows/build.yaml

+5-4
Original file line numberDiff line numberDiff line change
@@ -10,14 +10,14 @@ jobs:
1010
build:
1111
runs-on: ubuntu-24.04
1212

13-
# Steps represent a sequence of tasks that will be executed as part of the job
1413
steps:
15-
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
16-
- uses: actions/checkout@v4
14+
- name: Checkout repository
15+
uses: actions/checkout@v4
16+
1717
- name: Setup Node.js
1818
uses: actions/setup-node@v4
1919
with:
20-
node-version: '16.17.1'
20+
node-version: '20.13.1'
2121

2222
- name: Cache node modules
2323
id: cache
@@ -56,6 +56,7 @@ jobs:
5656
path: |
5757
dist
5858
!dist/*.txt
59+
5960
- name: Upload test coverage report
6061
uses: actions/upload-artifact@v4
6162
with:

.github/workflows/publish.yaml

+4-4
Original file line numberDiff line numberDiff line change
@@ -8,14 +8,14 @@ jobs:
88
deploy:
99
runs-on: ubuntu-24.04
1010

11-
# Steps represent a sequence of tasks that will be executed as part of the job
1211
steps:
13-
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
14-
- uses: actions/checkout@v4
12+
- name: Checkout repository
13+
uses: actions/checkout@v4
14+
1515
- name: Setup Node.js
1616
uses: actions/setup-node@v4
1717
with:
18-
node-version: '16.17.1'
18+
node-version: '20.13.1'
1919
registry-url: 'https://registry.npmjs.org'
2020

2121
- name: Install Dependencies

.nvmrc

+1-2
Original file line numberDiff line numberDiff line change
@@ -1,2 +1 @@
1-
16.17.1
2-
// DO NOT DOWNGRADE, because NodeJS < 16 doesn't support Apple Silicon
1+
20.13.1

0 commit comments

Comments
 (0)