Send a bit more S to ppl we double counted loans #18643
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Check PRs | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.ref }} | |
cancel-in-progress: true | |
on: | |
push: | |
branches: [main] | |
pull_request: | |
branches: [main] | |
env: | |
FORCE_COLOR: 3 | |
NEXT_TELEMETRY_DISABLED: 1 | |
jobs: | |
check: | |
name: Static analysis | |
runs-on: ubuntu-latest | |
permissions: | |
contents: read | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v3 | |
- name: Install Node 18 | |
uses: actions/setup-node@v4 | |
env: | |
FORCE_COLOR: 0 # https://github.com/actions/setup-node/issues/317 | |
with: | |
node-version: 18 | |
cache: 'yarn' | |
- name: Install dependencies | |
run: yarn install --prefer-offline --frozen-lockfile | |
- name: Build common | |
working-directory: common | |
run: yarn build | |
- name: Run Typescript checker on web client | |
working-directory: web | |
run: tsc --pretty --project tsconfig.json --noEmit | |
- name: Build shared | |
if: ${{ success() || failure() }} | |
working-directory: backend/shared | |
run: yarn build | |
- name: Run Typescript checker on API | |
working-directory: backend/api | |
run: tsc --noEmit --skipLibCheck --pretty | |
- name: Lint API | |
if: ${{ success() }} | |
working-directory: backend/api | |
run: yarn verify:dir | |
- name: Run Typescript checker on scheduler | |
if: ${{ success() || failure() }} | |
working-directory: backend/scheduler | |
run: tsc --noEmit --skipLibCheck --pretty |