-
Notifications
You must be signed in to change notification settings - Fork 0
58 lines (51 loc) · 1.42 KB
/
Copy pathformat.yml
File metadata and controls
58 lines (51 loc) · 1.42 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
name: Format
# Repo-local dev gate: enforces Prettier formatting on every Prettier-supported
# file. Distinct from lint-markdown.yml (markdownlint, reusable for consumers) —
# Prettier is this repo's own formatter (a committed dev dependency, see
# package.json), NOT part of the published standard, so this workflow is not
# reusable and installs from the committed lockfile. Prettier honors .gitignore,
# so .venv/ and caches are skipped without extra config.
on:
push:
branches: ["main"]
paths:
- "**/*.md"
- "**/*.json"
- "**/*.jsonc"
- "**/*.yml"
- "**/*.yaml"
- "**/*.code-workspace"
- ".prettierrc.json"
- "package.json"
- "package-lock.json"
- ".github/workflows/format.yml"
pull_request:
paths:
- "**/*.md"
- "**/*.json"
- "**/*.jsonc"
- "**/*.yml"
- "**/*.yaml"
- "**/*.code-workspace"
- ".prettierrc.json"
- "package.json"
- "package-lock.json"
- ".github/workflows/format.yml"
permissions:
contents: read
jobs:
prettier:
name: Prettier
runs-on: ubuntu-latest
steps:
- name: Check out repository
uses: actions/checkout@v6
- name: Set up Node
uses: actions/setup-node@v4
with:
node-version: "22"
cache: npm
- name: Install pinned Prettier
run: npm ci
- name: Check formatting
run: npx prettier --check .