Skip to content

Commit 14d9f81

Browse files
committed
build: use Node.js current
1 parent c1bf50e commit 14d9f81

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

.github/workflows/lint.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,10 +13,10 @@ jobs:
1313
runs-on: macos-latest
1414
steps:
1515
- uses: actions/checkout@v3
16-
- name: Use Node.js 18.x
16+
- name: Setup Node.js
1717
uses: actions/setup-node@v3
1818
with:
19-
node-version: 18.x
19+
node-version: current
2020
- name: Lint
2121
run: |
2222
npm install

.github/workflows/test.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,10 +13,10 @@ jobs:
1313
runs-on: macos-latest
1414
steps:
1515
- uses: actions/checkout@v3
16-
- name: Use Node.js 18.x
16+
- name: Setup Node.js
1717
uses: actions/setup-node@v3
1818
with:
19-
node-version: 18.x
19+
node-version: current
2020
- name: npm install, build, and test
2121
run: |
2222
npm install

0 commit comments

Comments
 (0)