Skip to content

Commit

Permalink
build: add node v20 (#117)
Browse files Browse the repository at this point in the history
  • Loading branch information
aladdin-add committed Sep 12, 2023
1 parent 47cd9a6 commit b7d0536
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/CI.yml
Expand Up @@ -13,13 +13,13 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
fetch-depth: 1
- name: Install Node.js
uses: actions/setup-node@v3
with:
node: 16.x
node: 20.x
- name: Install Packages
run: npm install
- name: Lint
Expand All @@ -32,7 +32,7 @@ jobs:
matrix:
os: [ubuntu-latest, windows-latest, macOS-latest]
eslint: [8.x, 7.x]
node: [18.x]
node: [18.x, 20.x]
include:
# run on node lts(ubuntu-latest)
- os: ubuntu-latest
Expand All @@ -44,7 +44,7 @@ jobs:
runs-on: ${{ matrix.os }}
steps:
- name: Checkout
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
fetch-depth: 1
- name: Install Node.js ${{ matrix.node }}
Expand Down

0 comments on commit b7d0536

Please sign in to comment.