We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2ac8a36 commit a34b319Copy full SHA for a34b319
.github/workflows/ci.yml
@@ -14,15 +14,15 @@ jobs:
14
runs-on: ubuntu-latest
15
strategy:
16
matrix:
17
- node_version: [10, 11, 12]
+ node: ['8', '10', '11', '12']
18
steps:
19
- uses: actions/checkout@v1
20
with:
21
fetch-depth: 3
22
- - name: Use Node.js ${{ matrix.node_version }}
+ - name: Setup node
23
uses: actions/setup-node@v1
24
25
- version: ${{ matrix.node_version }}
+ node-version: ${{ matrix.node }}
26
- name: Install Package dependencies
27
run: yarn install
28
- name: Run tests
0 commit comments