2020-01-03 21:39:49 +01:00
|
|
|
name: Node CI
|
|
|
|
|
|
|
|
on: [push]
|
|
|
|
|
|
|
|
jobs:
|
2020-01-03 23:01:29 +01:00
|
|
|
build:
|
2020-01-03 21:39:49 +01:00
|
|
|
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
|
|
|
|
steps:
|
|
|
|
- uses: actions/checkout@v1
|
2020-01-03 23:04:38 +01:00
|
|
|
|
2020-01-03 23:01:29 +01:00
|
|
|
- name: Setup Node.js 12.x
|
|
|
|
uses: actions/setup-node@v1
|
2020-01-03 21:39:49 +01:00
|
|
|
with:
|
|
|
|
node-version: 12.x
|
2020-01-03 23:01:29 +01:00
|
|
|
|
|
|
|
- name: Install and test
|
2020-01-03 21:39:49 +01:00
|
|
|
run: |
|
|
|
|
npm ci
|
|
|
|
npm test
|
|
|
|
env:
|
2020-01-03 23:04:38 +01:00
|
|
|
CI: true
|