Testing Github CI

This commit is contained in:
Francisco Hodge 2019-08-26 21:02:07 -04:00 committed by GitHub
parent 33bcf47f71
commit a782deefea
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

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

@ -0,0 +1,27 @@
name: Node CI
on:
push:
branches:
- master
- staging
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v1
- name: Use latest Node.js
uses: actions/setup-node@v1
with:
node-version: latest
- name: npm install, build, and test
run: |
npm install -g codecov
npm install
npm run start -- --testMode
npm run demo
npm run coverage
codecov
env:
CI: true