chore(ci): rename build-docs.yml to ci.yml

The workflow now runs the fish config test suite before building and
publishing docs, so "build-docs" no longer describes its full scope.
This commit is contained in:
2026-08-20 01:15:10 -04:00
parent 2608a6cd72
commit 7466188d35
2 changed files with 2 additions and 2 deletions
@@ -1,4 +1,4 @@
name: Generate documentation
name: CI
on:
push:
+1 -1
View File
@@ -337,7 +337,7 @@ for the full sub-category list per category.
fish tests/run-tests.fish
```
Runs before every push (and gates the [documentation build](.github/workflows/build-docs.yml) in CI, so a broken config can't get published): syntax-lints every `.fish` file, then loads the config in an isolated `HOME`/XDG sandbox — never this checkout itself, since it doubles as a real `~/.config/fish` — and runs functional checks against foundational behavior (XDG/PATH/CDPATH setup, key bindings, abbreviations, core functions, the opinionated-component registry, and more).
Runs before every push (and gates the [documentation build](.github/workflows/ci.yml) in CI, so a broken config can't get published): syntax-lints every `.fish` file, then loads the config in an isolated `HOME`/XDG sandbox — never this checkout itself, since it doubles as a real `~/.config/fish` — and runs functional checks against foundational behavior (XDG/PATH/CDPATH setup, key bindings, abbreviations, core functions, the opinionated-component registry, and more).
---