Skip to content

Commit

Permalink
ci: pin node version
Browse files Browse the repository at this point in the history
  • Loading branch information
sxzz committed Sep 8, 2021
1 parent 6408d3c commit 76ec880
Showing 1 changed file with 7 additions and 2 deletions.
9 changes: 7 additions & 2 deletions .github/workflows/unit-test.yml
Expand Up @@ -4,11 +4,16 @@ on: pull_request

jobs:
build:
name: Unit Test
name: Unit Test (Node ${{ matrix.node-name }})
runs-on: ubuntu-latest
strategy:
matrix:
node-version: ['14', '16']
node-version: ['14', '16.8']
include:
- node-version: '14'
node-name: 'LTS'
- node-version: '16.8'
node-name: 'Current'
steps:
- uses: actions/checkout@v2
- name: Setup node
Expand Down

0 comments on commit 76ec880

Please sign in to comment.