We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent de92e8e commit 0204d38Copy full SHA for 0204d38
.github/workflows/prettier-checks.yml
@@ -0,0 +1,28 @@
1
+name: Prettier Checks
2
+on:
3
+ pull_request:
4
+ branches: [master]
5
+permissions:
6
+ contents: read
7
+jobs:
8
+ PrettierChecks:
9
+ name: Prettier Checks
10
+ runs-on: ubuntu-latest
11
+ steps:
12
+ - name: Checkout repository
13
+ uses: actions/checkout@v4
14
+ with:
15
+ fetch-depth: 0
16
+ persist-credentials: false
17
+ - name: Setup Node
18
+ uses: actions/setup-node@v4
19
20
+ node-version: 22
21
+
22
+ - name: Install dependencies
23
+ shell: bash
24
+ run: npm install
25
26
+ - name: Run Prettier
27
28
+ run: npx prettier --check .
0 commit comments