-
Notifications
You must be signed in to change notification settings - Fork 2
52 lines (45 loc) · 1.27 KB
/
format.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
51
52
name: Code Format
on:
push:
branches:
- 'main'
workflow_dispatch:
jobs:
prettier:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [20.x]
steps:
- uses: actions/checkout@v4
- name: pnpm install
uses: './.github/actions/install_deps'
with:
node-version: ${{ matrix.node-version }}
- name: Restore prettier cache
uses: actions/cache/restore@v4
with:
path: .cache/prettier
key: prettier-main-cache
- name: Format
run: pnpm format
continue-on-error: true
- name: Remove cache
if: github.event_name == 'push'
env:
GH_TOKEN: ${{ github.token }}
GH_REPO: ${{ github.event.repository.full_name }}
run: |
gh api --method DELETE /repos/{owner}/{repo}/actions/caches?key=prettier-main-cache ||
echo "Cache not found"
- name: Save Cache
if: github.event_name == 'push'
uses: actions/cache/save@v4
with:
path: .cache/prettier
key: prettier-main-cache
- name: Commit and Push
if: github.event_name != 'push'
uses: stefanzweifel/git-auto-commit-action@v5
with:
commit_message: Apply Prettier