aboutsummaryrefslogtreecommitdiffstats
path: root/.github/workflows/test-frontend.yaml
blob: 168518a77e53430fd8627ed7ea878c1a6aad77fe (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
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, check and test
        working-directory: ./code/frontend
        run: |
          bun install
          bun run check
          bun run test