Merge pull request #2 from sundowndev/test/nodejs

Create node.js tests actions workflow
master
Raphael 2019-09-26 10:58:28 +02:00 committed by GitHub
commit 95ee9d79a0
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