Skip to content

Commit b7d0536

Browse files
authoredSep 12, 2023
build: add node v20 (#117)
1 parent 47cd9a6 commit b7d0536

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed
 

‎.github/workflows/CI.yml

+4-4
Original file line numberDiff line numberDiff line change
@@ -13,13 +13,13 @@ jobs:
1313
runs-on: ubuntu-latest
1414
steps:
1515
- name: Checkout
16-
uses: actions/checkout@v3
16+
uses: actions/checkout@v4
1717
with:
1818
fetch-depth: 1
1919
- name: Install Node.js
2020
uses: actions/setup-node@v3
2121
with:
22-
node: 16.x
22+
node: 20.x
2323
- name: Install Packages
2424
run: npm install
2525
- name: Lint
@@ -32,7 +32,7 @@ jobs:
3232
matrix:
3333
os: [ubuntu-latest, windows-latest, macOS-latest]
3434
eslint: [8.x, 7.x]
35-
node: [18.x]
35+
node: [18.x, 20.x]
3636
include:
3737
# run on node lts(ubuntu-latest)
3838
- os: ubuntu-latest
@@ -44,7 +44,7 @@ jobs:
4444
runs-on: ${{ matrix.os }}
4545
steps:
4646
- name: Checkout
47-
uses: actions/checkout@v3
47+
uses: actions/checkout@v4
4848
with:
4949
fetch-depth: 1
5050
- name: Install Node.js ${{ matrix.node }}

0 commit comments

Comments
 (0)
Please sign in to comment.