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 475b729 commit b07929aCopy full SHA for b07929a
.github/workflows/nodejs.yml
@@ -1,4 +1,4 @@
1
-name: Node.js CI
+name: Node.js build
2
3
on:
4
push:
@@ -8,13 +8,10 @@ on:
8
9
jobs:
10
build:
11
-
12
runs-on: ubuntu-latest
13
14
strategy:
15
matrix:
16
node-version: ['10', '12', '14', '16']
17
18
steps:
19
- uses: actions/checkout@v2
20
- name: Use Node.js ${{ matrix.node-version }}
@@ -31,5 +28,7 @@ jobs:
31
28
- name: Install dependencies
32
29
if: steps.yarn-cache.outputs.cache-hit != 'true'
33
30
run: yarn install --frozen-lockfile
+ - name: Build
+ run: yarn build
34
- name: Test
35
run: yarn test
0 commit comments