You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
|
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 test-all
|