From 5031c2a5e3826c062fed2af3f079f440e333a04e Mon Sep 17 00:00:00 2001 From: Benny Samir Hierl Date: Thu, 3 Feb 2022 22:18:34 +0100 Subject: [PATCH] unit test added to pipeline Signed-off-by: Benny Samir Hierl --- .github/workflows/ci.yml | 2 ++ .github/workflows/validation.yml | 2 ++ 2 files changed, 4 insertions(+) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 829ddfd..46edb99 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -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 diff --git a/.github/workflows/validation.yml b/.github/workflows/validation.yml index 4a48fc3..0c44c29 100644 --- a/.github/workflows/validation.yml +++ b/.github/workflows/validation.yml @@ -19,3 +19,5 @@ jobs: run: npm run lint - name: Typecheck run: npm run typecheck + - name: Unit tests + run: npm run test:unit:ci