Try to make check job continue but report failure accurately

This commit is contained in:
Marshall Polaris 2022-05-21 13:38:21 -07:00
parent 1c041d74f0
commit 7fdd8bd539

View File

@ -34,16 +34,15 @@ jobs:
- name: Run Prettier on web client
working-directory: web
run: npx prettier --check .
continue-on-error: true
- name: Run ESLint on web client
if: ${{ success() || failure() }}
working-directory: web
run: yarn lint --max-warnings 0
continue-on-error: true
- name: Run Typescript checker on web client
if: ${{ success() || failure() }}
working-directory: web
run: tsc --pretty --project tsconfig.json --noEmit
continue-on-error: true
- name: Run Typescript checker on cloud functions
if: ${{ success() || failure() }}
working-directory: functions
run: tsc --pretty --project tsconfig.json --noEmit
continue-on-error: true