22 lines
424 B
YAML
22 lines
424 B
YAML
name: CI
|
|
|
|
on:
|
|
pull_request:
|
|
workflow_call:
|
|
|
|
jobs:
|
|
test:
|
|
name: Test
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Checkout
|
|
uses: actions/checkout@v4
|
|
- uses: oven-sh/setup-bun@v2
|
|
with:
|
|
bun-version-file: ".bun-version"
|
|
- run: bun install --frozen-lockfile
|
|
- name: Run lint
|
|
run: bun run check:code
|
|
- name: Run spellcheck
|
|
run: bun run check:spell
|