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 3e58ef4 commit 6464d4cCopy full SHA for 6464d4c
2 files changed
.github/workflows/ci.yaml
@@ -107,13 +107,3 @@ jobs:
107
- uses: Nerixyz/actionsx-prettier@v3-adj
108
with:
109
args: --debug-check --check .
110
-
111
- prettier2:
112
- runs-on: ubuntu-latest
113
- steps:
114
- - uses: actions/checkout@v4
115
- - uses: actions/setup-node@v4
116
- - run: |
117
- yarn
118
- yarn prettier . --check
119
- - uses: autofix-ci/action@v1
.github/workflows/prettier.yaml
@@ -0,0 +1,17 @@
1
+name: autofix.ci
2
+on:
3
+ pull_request:
4
+ push:
5
+permissions: {}
6
+jobs:
7
+ prettier:
8
+ runs-on: ubuntu-latest
9
+ steps:
10
+ - uses: actions/checkout@v4
11
+ - uses: actions/setup-node@v4
12
+ - run: |
13
+ yarn
14
+ yarn prettier . --write
15
+ - uses: autofix-ci/action@v1
16
+ with:
17
+ commit-message: "Apply Prettier format"
0 commit comments