mirror of
https://github.com/zed-industries/zed.git
synced 2024-11-10 05:37:29 +03:00
e20db039d6
This PR upgrades the `pnpm/action-setup` GitHub Action to v4.0.0. Trying to see if I can fix the Renovate warning stemming from https://github.com/pnpm/action-setup/issues/95. Release Notes: - N/A
25 lines
462 B
YAML
25 lines
462 B
YAML
name: Docs
|
|
|
|
on:
|
|
pull_request:
|
|
paths:
|
|
- "docs/**"
|
|
push:
|
|
branches:
|
|
- main
|
|
|
|
jobs:
|
|
check_formatting:
|
|
name: "Check formatting"
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
- uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4
|
|
|
|
- uses: pnpm/action-setup@fe02b34f77f8bc703788d5817da081398fad5dd2 # v4.0.0
|
|
with:
|
|
version: 9
|
|
|
|
- run: pnpm dlx prettier . --check
|
|
working-directory: ./docs
|