We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6464d4c commit 8a5abb9Copy full SHA for 8a5abb9
2 files changed
.github/workflows/ci.yaml
@@ -107,3 +107,17 @@ 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
+ - name: Checkout
115
+ uses: actions/checkout@v3
116
+ with:
117
+ # Make sure the actual branch is checked out when running on pull requests
118
+ ref: ${{ github.head_ref }}
119
+ - name: Prettify code
120
+ uses: creyD/prettier_action@v4.3
121
122
+ # This part is also where you can pass other options, for example:
123
+ prettier_options: --check .
.github/workflows/prettier.yaml
0 commit comments