Skip to content

Commit

Permalink
Use node 20 (latest LTS version) instead of 18/19 (#211)
Browse files Browse the repository at this point in the history
  • Loading branch information
cknitt authored Apr 17, 2024
1 parent 3019014 commit 12df7e0
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/check-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,10 +12,10 @@ jobs:

steps:
- uses: actions/checkout@v3
- name: Use Node.js 19
- name: Use Node.js 20
uses: actions/setup-node@v3
with:
node-version: 19
node-version: 20
- run: npm install
- run: npm run build
- name: JS Files Changed
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/style.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,10 +12,10 @@ jobs:

steps:
- uses: actions/checkout@v3
- name: Use Node.js 19
- name: Use Node.js 20
uses: actions/setup-node@v3
with:
node-version: 19
node-version: 20
- run: npm install
- run: npx rescript format -all -check
- name: Helpful error message
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/test-doc-examples.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,10 +12,10 @@ jobs:

steps:
- uses: actions/checkout@v3
- name: Use Node.js 18
- name: Use Node.js 20
uses: actions/setup-node@v3
with:
node-version: 18
node-version: 20
- run: npm install
- run: npm run build
- run: npm run test-doc-examples

0 comments on commit 12df7e0

Please sign in to comment.