2019-11-15 11:14:42 +08:00
|
|
|
name: Node CI
|
|
|
|
|
|
|
|
on: [push]
|
|
|
|
|
|
|
|
jobs:
|
|
|
|
build:
|
|
|
|
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
|
|
|
|
strategy:
|
|
|
|
matrix:
|
2021-01-05 15:29:18 +08:00
|
|
|
node-version: [10.x, 12.x, 14.x]
|
2019-11-15 11:14:42 +08:00
|
|
|
|
|
|
|
steps:
|
|
|
|
- uses: actions/checkout@v1
|
|
|
|
- name: Use Node.js ${{ matrix.node-version }}
|
|
|
|
uses: actions/setup-node@v1
|
|
|
|
with:
|
|
|
|
node-version: ${{ matrix.node-version }}
|
2021-01-05 19:06:43 +08:00
|
|
|
- name: npm install, test, and build
|
2019-11-15 11:14:42 +08:00
|
|
|
run: |
|
2019-11-15 11:17:22 +08:00
|
|
|
npm install
|
2019-11-15 11:14:42 +08:00
|
|
|
npm test
|
2021-01-05 19:06:43 +08:00
|
|
|
npm run build
|
2019-11-15 11:14:42 +08:00
|
|
|
env:
|
|
|
|
CI: true
|