unit test added to pipeline

Signed-off-by: Benny Samir Hierl <bennysamir@posteo.de>
This commit is contained in:
Benny Samir Hierl 2022-02-03 22:18:34 +01:00
parent a3c12dac11
commit 5031c2a5e3
2 changed files with 4 additions and 0 deletions

View file

@ -19,6 +19,8 @@ jobs:
run: npm run lint
- name: Typecheck
run: npm run typecheck
- name: Unit tests
run: npm run test:unit:ci
docker:
runs-on: ubuntu-latest
needs: lint

View file

@ -19,3 +19,5 @@ jobs:
run: npm run lint
- name: Typecheck
run: npm run typecheck
- name: Unit tests
run: npm run test:unit:ci