Add runs-on field to GitHub static analysis workflow
This commit is contained in:
parent
1ddfd41a18
commit
c0cc9cdb7a
4
.github/workflows/check.yml
vendored
4
.github/workflows/check.yml
vendored
|
@ -27,23 +27,27 @@ jobs:
|
|||
prettier:
|
||||
needs: setup
|
||||
name: Run Prettier
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- run: npx prettier .
|
||||
|
||||
eslint:
|
||||
needs: setup
|
||||
name: Run ESLint on web client
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- run: cd web && yarn lint
|
||||
|
||||
tsc-web:
|
||||
needs: setup
|
||||
name: Run Typescript checker on web client
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- run: tsc --pretty --project web/tsconfig.json --noEmit
|
||||
|
||||
tsc-functions:
|
||||
needs: setup
|
||||
name: Run Typescript checker on cloud functions
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- run: tsc --pretty --project functions/tsconfig.json --noEmit
|
||||
|
|
Loading…
Reference in New Issue
Block a user