Skip to content

Commit 12df7e0

Browse files
authored
Use node 20 (latest LTS version) instead of 18/19 (#211)
1 parent 3019014 commit 12df7e0

File tree

3 files changed

+6
-6
lines changed

3 files changed

+6
-6
lines changed

.github/workflows/check-build.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,10 +12,10 @@ jobs:
1212

1313
steps:
1414
- uses: actions/checkout@v3
15-
- name: Use Node.js 19
15+
- name: Use Node.js 20
1616
uses: actions/setup-node@v3
1717
with:
18-
node-version: 19
18+
node-version: 20
1919
- run: npm install
2020
- run: npm run build
2121
- name: JS Files Changed

.github/workflows/style.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,10 +12,10 @@ jobs:
1212

1313
steps:
1414
- uses: actions/checkout@v3
15-
- name: Use Node.js 19
15+
- name: Use Node.js 20
1616
uses: actions/setup-node@v3
1717
with:
18-
node-version: 19
18+
node-version: 20
1919
- run: npm install
2020
- run: npx rescript format -all -check
2121
- name: Helpful error message

.github/workflows/test-doc-examples.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,10 +12,10 @@ jobs:
1212

1313
steps:
1414
- uses: actions/checkout@v3
15-
- name: Use Node.js 18
15+
- name: Use Node.js 20
1616
uses: actions/setup-node@v3
1717
with:
18-
node-version: 18
18+
node-version: 20
1919
- run: npm install
2020
- run: npm run build
2121
- run: npm run test-doc-examples

0 commit comments

Comments
 (0)