This repository has been archived by the owner on Aug 7, 2024. It is now read-only.
feat: single fetch #76
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: π Format | |
on: [push] | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.ref }} | |
cancel-in-progress: true | |
jobs: | |
format: | |
runs-on: ubuntu-latest | |
steps: | |
- name: β¬οΈ Checkout repo | |
uses: actions/checkout@v4 | |
- name: β Setup node | |
uses: actions/setup-node@v4 | |
with: | |
node-version: 20 | |
- name: β Enable Corepack | |
run: corepack enable | |
- name: π₯ Install deps | |
run: pnpm install | |
- name: π Format | |
run: pnpm format | |
- name: πͺ Commit | |
run: | | |
git config --local user.email "github-actions[bot]@users.noreply.github.com" | |
git config --local user.name "github-actions[bot]" | |
git add . | |
if [ -z "$(git status --porcelain)" ]; then | |
echo "πΏ no formatting changed" | |
exit 0 | |
fi | |
git commit -m "chore: format" | |
git push | |
echo "πΏ pushed formatting changes https://github.com/$GITHUB_REPOSITORY/commit/$(git rev-parse HEAD)" |