Run the tests with github actions

This commit is contained in:
Roland Geider
2021-07-19 14:58:18 +02:00
parent 83d82282fb
commit 0bcb91c9c4

18
.github/workflows/angular-ci.yml vendored Normal file
View File

@@ -0,0 +1,18 @@
name: Continous Integration (Angular)
on: push
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Use Node.js 14.x
uses: actions/setup-node@v1
with:
node-version: 14.x
- name: Setup
run: npm ci
- name: Test
run: |
npm test -- --no-watch --no-progress --browsers=ChromeHeadlessCI