name: CI on: pull_request: workflow_call: jobs: test: name: Test runs-on: ubuntu-latest steps: - name: Checkout uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 - uses: oven-sh/setup-bun@3d267786b128fe76c2f16a390aa2448b815359f3 # v2.1.2 with: bun-version-file: ".bun-version" # only required for cspell compatibility until a mature replacement is available - uses: actions/setup-node@v5 with: node-version: 20 - run: bun install --frozen-lockfile - name: Run lint run: bun run check:code - name: Run spellcheck run: bun run check:spell