Files
outline-mcp/.gitea/workflows/ci.yaml
Timo Behrendt 83f87f8729
All checks were successful
CI / Test (pull_request) Successful in 1m40s
add legacy node for cspell
2025-07-15 21:11:12 +02:00

26 lines
588 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"
# only required for cspell compatibility until a mature replacement is available
- uses: actions/setup-node@v4
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