From 0bcb91c9c4dbbc8f4f39e781acdbe1292edcada7 Mon Sep 17 00:00:00 2001 From: Roland Geider Date: Mon, 19 Jul 2021 14:58:18 +0200 Subject: [PATCH] Run the tests with github actions --- .github/workflows/angular-ci.yml | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 .github/workflows/angular-ci.yml diff --git a/.github/workflows/angular-ci.yml b/.github/workflows/angular-ci.yml new file mode 100644 index 000000000..1a4ce47bb --- /dev/null +++ b/.github/workflows/angular-ci.yml @@ -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