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 870b9c7 commit 4b31549Copy full SHA for 4b31549
.github/workflows/formatting.yml
@@ -12,30 +12,30 @@ jobs:
12
uses: actions/checkout@v4
13
with:
14
token: ${{ secrets.COMMENT_TOKEN }}
15
-
+
16
- name: Set up pnpm
17
uses: pnpm/action-setup@v4
18
19
run_install: false
20
21
- name: Set up Node.js
22
uses: actions/setup-node@v4
23
24
node-version: 20
25
cache: "pnpm"
26
27
- name: Install dependencies
28
run: make install
29
30
- name: Check Formatting
31
id: format-check
32
run: pnpm format --check
33
continue-on-error: true
34
35
- name: Auto Format
36
if: steps.format-check.outcome == 'failure'
37
run: pnpm format
38
39
- name: Commit changes
40
41
run: |
0 commit comments