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