Version Packages (#580) #621
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 and Update Readme | |
on: | |
push: | |
branches: [main] | |
jobs: | |
format-and-update: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: pnpm/action-setup@v2.2.4 | |
- name: Setup Node.js environment | |
uses: actions/setup-node@v3 | |
with: | |
node-version: 18 | |
cache: pnpm | |
- name: Install dependencies | |
run: pnpm install | |
- name: Setup prettier cache | |
uses: actions/cache@v3 | |
with: | |
path: node_modules/.cache/prettier | |
key: prettier-${{ github.sha }} | |
restore-keys: | | |
prettier- | |
- name: Format | |
run: pnpm run format | |
- name: Add, Commit and Push | |
uses: stefanzweifel/git-auto-commit-action@v4 | |
with: | |
commit_message: "Format" | |
- name: Update Readme | |
run: pnpm run update-readme | |
- name: Add, Commit and Push | |
uses: stefanzweifel/git-auto-commit-action@v4 | |
with: | |
commit_message: "Update Readme" | |
file_pattern: README.md |