Skip to content

Commit 0523b81

Browse files
committed
ci dropping node 10.x
1 parent ca7a45e commit 0523b81

File tree

2 files changed

+30
-28
lines changed

2 files changed

+30
-28
lines changed

.github/workflows/nodejs.yml

-28
This file was deleted.

.github/workflows/on_push.yml

+30
Original file line numberDiff line numberDiff line change
@@ -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

Comments
 (0)