Files
wger/.github/workflows/angular-ci.yml
2021-07-19 14:58:18 +02:00

19 lines
395 B
YAML

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