2020-03-22 19:56:55 +02:00
|
|
|
name: Tests
|
2020-01-16 23:50:02 +02:00
|
|
|
|
2020-03-22 19:56:55 +02:00
|
|
|
on:
|
|
|
|
push:
|
|
|
|
branches:
|
|
|
|
- master
|
|
|
|
pull_request:
|
2020-01-16 23:50:02 +02:00
|
|
|
|
|
|
|
jobs:
|
|
|
|
test:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
|
|
|
|
steps:
|
|
|
|
- uses: actions/checkout@v1
|
|
|
|
|
|
|
|
- name: Setup Node.js 12.x
|
|
|
|
uses: actions/setup-node@v1
|
|
|
|
with:
|
|
|
|
node-version: 12.x
|
|
|
|
|
|
|
|
- name: Install and test
|
|
|
|
run: |
|
|
|
|
npm ci
|
|
|
|
npm run test:app
|
|
|
|
env:
|
|
|
|
CI: true
|