Files
starter-workflows/ci/node.js.yml
T
Chris Patterson b13ec89084 Initial formatting
2019-08-06 16:37:30 -07:00

21 lines
361 B
YAML

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