Skip to content

prettier test

prettier test #8

name: Prettier Auto-Format
on:
push:
branches:
- feat/add-prettier-format
jobs:
prettier:
runs-on: ubuntu-latest
steps:
- name: Check Out Repository
uses: actions/checkout@v2
- name: Install Prettier
run: npm install prettier --global
- name: Get Modified Files
id: modified-files
run: |
modified_files=$(git diff-tree --no-commit-id --name-only -r ${{ github.sha }})
echo "Modified files: $modified_files" > env_file
- name: Read Modified Files
id: read-env
run: echo "::set-env name=MODIFIED_FILES::$(cat env_file)"
- name: Format Modified Files
if: ${{ steps.read-env.outputs.MODIFIED_FILES != '' }}
run: |
modified_files=${{ steps.read-env.outputs.MODIFIED_FILES }}
prettier --write $modified_files
- name: Commit Changes
if: ${{ steps.read-env.outputs.MODIFIED_FILES != '' }}
run: |
git config --global user.name "Your GitHub Username"
git config --global user.email "[email protected]"
git add .
git commit -m "Auto-format code with Prettier [skip ci]"
- name: Push Changes
if: ${{ steps.read-env.outputs.MODIFIED_FILES != '' }}
uses: ad-m/github-push-action@master
with:
github_token: ${{ secrets.GITHUB_TOKEN }}