Skip to content

chore: update match history #80

chore: update match history

chore: update match history #80

Workflow file for this run

name: CI
on:
pull_request:
push:
branches: [main]
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
- name: Setup Bun
uses: oven-sh/setup-bun@v2
- name: Install dependencies
run: bun install
- name: Type check
run: bun run typecheck
- name: Lint & Format check
run: bun run lint
- name: Run tests
run: bun test
- name: Install site dependencies
run: cd site && bun install
- name: Build site
run: bun run site:build