mirror of
https://github.com/placeholder-soft/asdf-plugins.git
synced 2026-04-28 11:54:58 +08:00
31 lines
596 B
YAML
31 lines
596 B
YAML
name: Format
|
|
|
|
on:
|
|
push:
|
|
branches:
|
|
- master
|
|
paths:
|
|
- README.md
|
|
|
|
jobs:
|
|
format_readme:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Checkout code
|
|
uses: actions/checkout@v2
|
|
with:
|
|
fetch-depth: 0
|
|
|
|
- name: Setup Node.js
|
|
uses: actions/setup-node@v2
|
|
with:
|
|
node-version: '16'
|
|
|
|
- name: Format README.md
|
|
run: npx -y prettier --write README.md
|
|
|
|
- name: Commit format of README.md
|
|
uses: stefanzweifel/git-auto-commit-action@v4
|
|
with:
|
|
commit_message: "chore: format README.md"
|