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 f36fa62569
commit 3c92919359
No known key found for this signature in database
GPG Key ID: 79619B52BB097C1A

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