Skip to content

Commit

Permalink
Update CI workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
yunpengn committed Dec 26, 2020
1 parent 9f8eb20 commit 753b987
Show file tree
Hide file tree
Showing 3 changed files with 7,680 additions and 39 deletions.
7 changes: 4 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
node: [10.x, 12.x, 13.x]
node: [13.x, 14.x, 15.x]
steps:
# See https://github.com/actions/checkout
- name: Download the repository to $GITHUB_WORKSPACE
Expand All @@ -31,12 +31,13 @@ jobs:
fetch-depth: 50
# See https://github.com/actions/setup-node
- name: Setup Node ${{ matrix.node }}
uses: actions/setup-node@v1
uses: actions/setup-node@v2
with:
node-version: ${{ matrix.node }}
check-latest: true
# See https://github.com/actions/cache
- name: Cache NPM packages
uses: actions/cache@v1
uses: actions/cache@v2
with:
path: ~/.npm
key: ${{ runner.os }}-node-${{ hashFiles('**/package-lock.json') }}
Expand Down
Loading

0 comments on commit 753b987

Please sign in to comment.