Skip to content

Commit 3891059

Browse files
committed
ci: run semantic on node 12
1 parent 2b1def5 commit 3891059

File tree

1 file changed

+8
-1
lines changed

1 file changed

+8
-1
lines changed

.github/workflows/nodejs.yml

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,14 +12,21 @@ jobs:
1212
uses: actions/setup-node@v1
1313
with:
1414
node-version: ${{ matrix.node-version }}
15-
- name: Test & Build
15+
- name: Install modules
1616
run: |
1717
yarn install
18+
- name: Test
19+
run: |
1820
yarn test
21+
env:
22+
CI: true
23+
- name: Build
24+
run: |
1925
yarn build
2026
env:
2127
CI: true
2228
- name: Semantic Release
29+
if: startsWith(matrix.node-version, '12.')
2330
uses: cycjimmy/semantic-release-action@v2
2431
id: semantic # Need an `id` for output variables
2532
with:

0 commit comments

Comments
 (0)