aboutsummaryrefslogtreecommitdiffstats
path: root/.github/workflows/pr.yaml
blob: 1633bc2ed8299e0c50a02b1a28109067e6313772 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
name: pr
on:
  workflow_dispatch:
jobs:
  build:
    name: build
    runs-on: ubuntu-latest
    steps:
      - name: Checkout repo
        uses: actions/checkout@v4
      - name: Install bun
        uses: oven-sh/setup-bun@v1
      - name: Setup
        run: cd code/frontend
      - name: Install dependencies
        run: bun install
      - name: Check
        run: bun run check
      - name: Test
        run: bun run test