Files
starter-workflows/ci/node.js.yml
T
2019-07-31 16:52:59 -07:00

24 lines
386 B
YAML

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