-
Notifications
You must be signed in to change notification settings - Fork 1
47 lines (45 loc) · 1 KB
/
Copy pathformat.yml
File metadata and controls
47 lines (45 loc) · 1 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
name: Format
on:
push:
branches: ["main"]
paths:
- "**/*.md"
- "**/*.json"
- "**/*.jsonc"
- "**/*.yml"
- "**/*.yaml"
- "**/*.code-workspace"
- ".prettierrc.json"
- ".prettierignore"
- "package.json"
- "package-lock.json"
- ".github/workflows/format.yml"
pull_request:
paths:
- "**/*.md"
- "**/*.json"
- "**/*.jsonc"
- "**/*.yml"
- "**/*.yaml"
- "**/*.code-workspace"
- ".prettierrc.json"
- ".prettierignore"
- "package.json"
- "package-lock.json"
- ".github/workflows/format.yml"
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@v6
with:
node-version: "22"
cache: npm
- name: Install pinned Prettier
run: npm ci
- name: Check formatting
run: npx prettier --check .