chore(workflow) add

This commit is contained in:
coderaiser 2019-08-14 15:42:07 +03:00 committed by coderaiser
parent a493e5a4d1
commit 1ab5b189dc

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

@ -0,0 +1,20 @@
name: Node CI
on: [push]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@master
- name: Use Node.js 12.x
uses: actions/setup-node@v1
with:
version: 12.x
- name: npm install, build, and test
run: |
npm install
npm run build
npm test