mirror of
https://github.com/zed-industries/zed.git
synced 2024-12-27 19:02:07 +00:00
4ae2f93086
- Closes: https://github.com/zed-industries/zed/issues/19351 - Switch to using the official [typos GitHub Action](https://github.com/crate-ci/typos/blob/master/docs/github-action.md) - Move the typos check into `actions/check_style` - Move Squawk Postgres migration check out of `actions/check_style` file into ci.yml - `actions/check_style` can now be run on stateless/linux runners (previous required self-hosted MacOS runner) - ci.yml: Split old `style` into checks into those that can run statelessly (linux) and everything else into a new `migration` group which benefit from the full git checkout available on the MacOS runners. - ci.yml: Move `Check unused dependencies` from style to `linux_tests` - Add `if: github.repository_owner == 'zed-industries'` to all jobs so they won't try and run on GitHub forks.
37 lines
883 B
YAML
37 lines
883 B
YAML
name: Docs
|
|
|
|
on:
|
|
pull_request:
|
|
paths:
|
|
- "docs/**"
|
|
push:
|
|
branches:
|
|
- main
|
|
|
|
jobs:
|
|
check_formatting:
|
|
name: "Check formatting"
|
|
if: github.repository_owner == 'zed-industries'
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
- uses: actions/checkout@eef61447b9ff4aafe5dcd4e0bbf5d482be7e7871 # v4
|
|
|
|
- uses: pnpm/action-setup@fe02b34f77f8bc703788d5817da081398fad5dd2 # v4.0.0
|
|
with:
|
|
version: 9
|
|
|
|
- name: Prettier Check on /docs
|
|
working-directory: ./docs
|
|
run: |
|
|
pnpm dlx prettier . --check || {
|
|
echo "To fix, run from the root of the zed repo:"
|
|
echo " cd docs && pnpm dlx prettier . --write && cd .."
|
|
false
|
|
}
|
|
|
|
- name: Check for Typos with Typos-CLI
|
|
uses: crate-ci/typos@v1.24.6
|
|
with:
|
|
config: ./typos.toml
|
|
files: ./docs/
|