Enable unit testing on the backend on the CI

This commit is contained in:
Felipe Knorr Kuhn 2022-07-07 12:23:21 -07:00
parent 1776545bb2
commit d4df230444

View File

@ -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