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 0be1f22 commit b1c2e0cCopy full SHA for b1c2e0c
.github/workflows/ci.yaml
@@ -5,12 +5,22 @@ on: [push]
5
jobs:
6
test:
7
runs-on: ubuntu-latest
8
+
9
+ strategy:
10
+ matrix:
11
+ node-version: [14.x]
12
13
steps:
14
- uses: actions/checkout@v2
- - name: Use Node.js
15
+ - name: Use Node.js ${{ matrix.node-version }}
16
uses: actions/setup-node@v1
- - run: yarn
- - run: yarn build
- - run: yarn test
17
+ with:
18
+ node-version: ${{ matrix.node-version }}
19
+ - name: Install Dependencies
20
+ run: yarn
21
+ - name: Build
22
+ run: yarn build
23
+ - name: Test
24
+ run: yarn test
25
env:
26
CI: true
0 commit comments