Check workflow should continue on error
This commit is contained in:
parent
9a25fd4b73
commit
00e14ac8b2
4
.github/workflows/check.yml
vendored
4
.github/workflows/check.yml
vendored
|
@ -35,12 +35,16 @@ jobs:
|
|||
- name: Run Prettier on web client
|
||||
working-directory: web
|
||||
run: npx prettier --check .
|
||||
continue-on-error: true
|
||||
- name: Run ESLint on web client
|
||||
working-directory: web
|
||||
run: yarn lint
|
||||
continue-on-error: true
|
||||
- name: Run Typescript checker on web client
|
||||
working-directory: web
|
||||
run: tsc --pretty --project tsconfig.json --noEmit
|
||||
continue-on-error: true
|
||||
- name: Run Typescript checker on cloud functions
|
||||
working-directory: functions
|
||||
run: tsc --pretty --project tsconfig.json --noEmit
|
||||
continue-on-error: true
|
||||
|
|
Loading…
Reference in New Issue
Block a user