-
Notifications
You must be signed in to change notification settings - Fork 159
57 lines (53 loc) · 1.56 KB
/
check.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
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 20
uses: actions/setup-node@v4
env:
FORCE_COLOR: 0 # https://github.com/actions/setup-node/issues/317
with:
node-version: 20
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: Check TypeScript Version
run: tsc --version
- 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