We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9a4d3bf commit 837fdadCopy full SHA for 837fdad
.github/workflows/main.yml
@@ -4,18 +4,18 @@ on:
4
- push
5
jobs:
6
main:
7
- name: '${{ matrix.node }}'
+ name: ${{matrix.node}}
8
runs-on: ubuntu-latest
9
steps:
10
- uses: actions/checkout@v2
11
- uses: dcodeIO/setup-node-nvm@master
12
with:
13
- node-version: ${{ matrix.node }}
+ node-version: ${{matrix.node}}
14
- run: npm install
15
- run: npm test
16
- uses: codecov/codecov-action@v1
17
strategy:
18
matrix:
19
node:
20
- - lts/dubnium
+ - lts/erbium
21
- node
0 commit comments