-
Notifications
You must be signed in to change notification settings - Fork 0
50 lines (42 loc) · 1.05 KB
/
prettier.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
name: prettier
on:
push:
jobs:
prettier-check:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v2
with:
token: ${{ secrets.MY_GITHUB_TOKEN }}
- name: Setup Node
uses: actions/setup-node@v2
with:
node-version: "14"
- name: Run Prettier Check
run: |
npx prettier --check .
prettier-write:
runs-on: ubuntu-latest
needs:
- prettier-check
if: always() && (needs.prettier-check.result == 'failure')
steps:
- name: Checkout
uses: actions/checkout@v2
with:
token: ${{ secrets.MY_GITHUB_TOKEN }}
- name: Setup Node
uses: actions/setup-node@v2
with:
node-version: "14"
- name: Write Prettier
run: |
npx prettier --write .
- name: Commit and Push
uses: EndBug/add-and-commit@v9
with:
add: "."
message: "Prettier"
committer_name: TonyPepeBear
committer_email: [email protected]