We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ca7a45e commit 0523b81Copy full SHA for 0523b81
.github/workflows/nodejs.yml
.github/workflows/on_push.yml
@@ -0,0 +1,30 @@
1
+on: push
2
+name: Build & Publish Docs
3
+jobs:
4
+ # checkChangesInDocs:
5
+ # name: Check changes in docs
6
+ # runs-on: ubuntu-latest
7
+ # steps:
8
+ # - uses: actions/checkout@master
9
+ # - name: Check changes in stories
10
+ # uses: netlify/actions/diff-includes@master
11
+ # with:
12
+ # args: docs
13
+ build:
14
+ runs-on: ubuntu-latest
15
+ strategy:
16
+ matrix:
17
+ node-version: [12.x, 14.x]
18
+ steps:
19
+ - uses: actions/checkout@v1
20
+ - name: Use Node.js ${{ matrix.node-version }}
21
+ uses: actions/setup-node@v1
22
+ with:
23
+ node-version: ${{ matrix.node-version }}
24
+ - name: npm install, build, and test
25
+ run: |
26
+ npm i
27
+ npm t
28
+ npm run build
29
+ env:
30
+ CI: true
0 commit comments