Switch check workflow to use single job
This commit is contained in:
parent
c0cc9cdb7a
commit
d118551405
40
.github/workflows/check.yml
vendored
40
.github/workflows/check.yml
vendored
|
@ -7,8 +7,8 @@ on:
|
|||
branches: [main]
|
||||
|
||||
jobs:
|
||||
setup:
|
||||
name: Set up test environment
|
||||
check:
|
||||
name: Perform static analysis checks
|
||||
runs-on: ubuntu-latest
|
||||
permissions:
|
||||
contents: read
|
||||
|
@ -23,31 +23,11 @@ jobs:
|
|||
cache: 'yarn'
|
||||
- name: Install dependencies
|
||||
run: yarn install --frozen-lockfile
|
||||
|
||||
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
|
||||
- name: Run Prettier
|
||||
run: npx prettier .
|
||||
- name: Run ESLint on web client
|
||||
run: cd web && yarn lint
|
||||
- name: Run Typescript checker on web client
|
||||
run: tsc --pretty --project web/tsconfig.json --noEmit
|
||||
- name: Run Typescript checker on cloud functions
|
||||
run: tsc --pretty --project functions/tsconfig.json --noEmit
|
||||
|
|
Loading…
Reference in New Issue
Block a user