mirror of
https://github.com/wger-project/wger.git
synced 2026-02-18 23:42:04 +01:00
19 lines
395 B
YAML
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
|