summaryrefslogtreecommitdiff
path: root/.github/workflows/typecheck.yml
blob: 20e71437b538292a50897be9a35db4897a0fe11d (plain)
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
name: Type Check

on:
  push:
  pull_request:

jobs:
  typecheck:
    name: Run type checkers
    runs-on: ubuntu-22.04

    steps:
      - uses: actions/checkout@v4 # Check out the repository first.

      - name: Set up NodeJS 20 💎
        uses: actions/setup-node@v4
        with:
          node-version: 20

      - name: Set up Python 3.11.7 🐍
        uses: actions/setup-python@v5
        with:
          python-version: "3.11.7"

      - name: Install Poetry
        uses: snok/install-poetry@v1
        with:
          virtualenvs-create: false

      - name: Install Python dependencies ⬇️
        working-directory: backend
        run: poetry install --no-interaction

      - name: Install TypeScript dependencies
        working-directory: frontend
        run: |
          npm i -g pnpm
          pnpm i --frozen-lockfile --dangerously-allow-all-builds

      - name: Run pyright (Python)
        uses: jakebailey/pyright-action@v1
        with:
          python-version: "3.10.6"
          no-comments: true
          working-directory: backend

      - name: Run tsc (TypeScript)
        working-directory: frontend
        run: pnpm run typecheck