ci: ignite github action for test and build

This commit is contained in:
Ya Zhuang 2020-02-21 01:19:23 +08:00
parent f73658a062
commit bebdbcd52b
No known key found for this signature in database
GPG key ID: B024B2767A35B0C7

31
.github/workflows/nodejs.yml vendored Normal file
View file

@ -0,0 +1,31 @@
---
name: Node CI
on: [push]
jobs:
build:
runs-on: ubuntu-18.04
strategy:
matrix:
node-version: [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 and test
run: |
npm ci
npm test
env:
CI: true
- name: npm build
run: npm run build
env:
CI: true