Add prettier
This commit is contained in:
parent
d1b22efc0e
commit
e4444b405a
5 changed files with 66 additions and 0 deletions
30
.github/workflows/format.yml
vendored
Normal file
30
.github/workflows/format.yml
vendored
Normal file
|
@ -0,0 +1,30 @@
|
|||
name: Run Prettier
|
||||
|
||||
on:
|
||||
push:
|
||||
|
||||
jobs:
|
||||
lint:
|
||||
runs-on: ubuntu-latest
|
||||
|
||||
steps:
|
||||
- uses: actions/checkout@master
|
||||
|
||||
- name: Run prettier
|
||||
run: |
|
||||
npm install
|
||||
npx prettier **/*.md --write
|
||||
|
||||
- name: Commit changes
|
||||
run: |
|
||||
if [ -n "$(git status --short **/*.md)" ]; then
|
||||
git config --local user.name "Oliver Davies"
|
||||
git config --local user.email "339813+opdavies@users.noreply.github.com"
|
||||
git commit -a -m "Run prettier"
|
||||
fi
|
||||
|
||||
- name: Push changes
|
||||
uses: ad-m/github-push-action@master
|
||||
with:
|
||||
github_token: ${{ secrets.GITHUB_TOKEN }}
|
||||
branch: ${{ github.head_ref }}
|
Loading…
Add table
Add a link
Reference in a new issue