Try to make check job continue but report failure accurately
This commit is contained in:
parent
1c041d74f0
commit
7fdd8bd539
7
.github/workflows/check.yml
vendored
7
.github/workflows/check.yml
vendored
|
@ -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
|
||||
|
|
Loading…
Reference in New Issue
Block a user