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.
2 parents 3cb663a + c7a931c commit 2de4f31Copy full SHA for 2de4f31
.github/workflows/prettier.xml
@@ -0,0 +1,26 @@
1
+name: Prettier
2
+
3
+on:
4
+ pull_request:
5
+ push:
6
+ branches:
7
+ - master
8
+ - Development
9
10
+jobs:
11
+ prettier:
12
+ runs-on: ubuntu-latest
13
14
+ steps:
15
+ - name: Checkout
16
+ uses: actions/checkout@v2
17
+ with:
18
+ ref: ${{ github.head_ref }}
19
20
+ - name: Prettify code
21
+ uses: creyD/prettier_action@v3.0
22
23
+ prettier_options: --write **/*.{java,md}
24
+ commit_message: 'feat: prettify code'
25
+ env:
26
+ GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
0 commit comments