Create nodejs.yml

This commit is contained in:
Xiao Kang 2019-11-15 11:14:42 +08:00 committed by GitHub
parent 3b4b7bdf83
commit 67c09534d8

25
.github/workflows/nodejs.yml vendored Normal file
View File

@ -0,0 +1,25 @@
name: Node CI
on: [push]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [8.x, 10.x, 12.x]
steps:
- uses: actions/checkout@v1
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v1
with:
node-version: ${{ matrix.node-version }}
- name: npm install, build, and test
run: |
npm ci
npm test
env:
CI: true