Skip to content

Commit

Permalink
format workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
cungminh2710 committed Apr 30, 2024
1 parent 8df7530 commit b364324
Show file tree
Hide file tree
Showing 2 changed files with 53 additions and 1 deletion.
52 changes: 52 additions & 0 deletions .github/workflows/format.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,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
2 changes: 1 addition & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ on:
# merge_group:
workflow_dispatch:
pull_request:
branches: [master]
branches: [main]
types: [auto_merge_enabled, ready_for_review]

jobs:
Expand Down

0 comments on commit b364324

Please sign in to comment.