This repository has been archived on 2026-07-28. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
outline-mcp/.gitea/workflows/ci.yaml
T
renovate-bot d13c1f248b
renovate/stability-days Updates have met minimum release age requirement
CI / Test (pull_request) Successful in 19s
chore(deps): update actions/checkout action to v6.0.3
2026-06-10 10:18:32 +00:00

26 lines
725 B
YAML

name: CI
on:
pull_request:
workflow_call:
jobs:
test:
name: Test
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@df4cb1c069e1874edd31b4311f1884172cec0e10 # v6.0.3
- uses: oven-sh/setup-bun@0c5077e51419868618aeaa5fe8019c62421857d6 # v2.2.0
with:
bun-version-file: ".bun-version"
# only required for cspell compatibility until a mature replacement is available
- uses: actions/setup-node@53b83947a5a98c8d113130e565377fae1a50d02f # v6
with:
node-version: 24
- run: bun install --frozen-lockfile
- name: Run lint
run: bun run check:code
- name: Run spellcheck
run: bun run check:spell