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 2b1def5 commit 3891059Copy full SHA for 3891059
.github/workflows/nodejs.yml
@@ -12,14 +12,21 @@ jobs:
12
uses: actions/setup-node@v1
13
with:
14
node-version: ${{ matrix.node-version }}
15
- - name: Test & Build
+ - name: Install modules
16
run: |
17
yarn install
18
+ - name: Test
19
+ run: |
20
yarn test
21
+ env:
22
+ CI: true
23
+ - name: Build
24
25
yarn build
26
env:
27
CI: true
28
- name: Semantic Release
29
+ if: startsWith(matrix.node-version, '12.')
30
uses: cycjimmy/semantic-release-action@v2
31
id: semantic # Need an `id` for output variables
32
0 commit comments