From 3c92919359633bdc830e5265b39a89d6826bfafe Mon Sep 17 00:00:00 2001 From: Felipe Knorr Kuhn <100320+knorrium@users.noreply.github.com> Date: Thu, 7 Jul 2022 12:23:21 -0700 Subject: [PATCH] Enable unit testing on the backend on the CI --- .github/workflows/ci.yml | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 1d250a0d5..70aa0fff8 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -42,8 +42,10 @@ jobs: run: npm run lint working-directory: ${{ matrix.flavor }}/backend - # - name: Test - # run: npm run test + - name: Test + if: ${{ matrix.flavor == 'dev'}} + run: npm run test + working-directory: ${{ matrix.flavor }}/backend - name: Build run: npm run build