Create node.js tests actions workflow

pull/2/head
Raphael 2019-09-26 10:56:57 +02:00 committed by GitHub
parent 12976e9b63
commit e4ac903bb0
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 26 additions and 0 deletions

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

@ -0,0 +1,26 @@
name: Node.js tests
on: [push]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [8.x, 12.x]
steps:
- uses: actions/checkout@v1
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v1
with:
node-version: ${{ matrix.node-version }}
- name: npm install and test
run: |
npm install
npm test
env:
CI: true
NODE_ENV: test