Switch check workflow to use single job

This commit is contained in:
Marshall Polaris 2022-05-21 12:51:31 -07:00
parent c0cc9cdb7a
commit d118551405

View File

@ -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