mirror of
https://github.com/chefyuan/algorithm-base.git
synced 2024-11-01 01:33:38 +00:00
36 lines
922 B
YAML
36 lines
922 B
YAML
name: Format files
|
|
|
|
on:
|
|
push:
|
|
branches: [ main ]
|
|
pull_request:
|
|
branches: [ main ]
|
|
workflow_dispatch:
|
|
|
|
jobs:
|
|
test-and-build:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v2
|
|
with:
|
|
persist-credentials: false
|
|
fetch-depth: 0
|
|
|
|
- name: Install Prettier
|
|
run: npm install --save-dev --save-exact prettier
|
|
|
|
- name: Format files
|
|
run: node_modules/.bin/prettier --write README.md animation-simulation/
|
|
|
|
- name: Commit files
|
|
run: |
|
|
git config --local user.email "41898282+github-actions[bot]@users.noreply.github.com"
|
|
git config --local user.name "github-actions[bot]"
|
|
git commit -am "代码重构 【Github Actions】"
|
|
|
|
- name: Push changes
|
|
uses: ad-m/github-push-action@master
|
|
with:
|
|
github_token: ${{ secrets.GITHUB_TOKEN }}
|
|
branch: ${{ github.ref }}
|