Merge pull request #1010 from MuteTiefling/Broken-Tree-of-Life #700
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: Prettier | |
on: | |
push: | |
branches: | |
- 'develop' | |
- 'prettier/**' | |
jobs: | |
job: | |
runs-on: ubuntu-latest | |
timeout-minutes: 2 | |
steps: | |
- uses: actions/checkout@v3 | |
with: | |
fetch-depth: 0 | |
- uses: actions/setup-node@v3 | |
- uses: denoland/setup-deno@v1 | |
- run: npx --yes prettier -v | |
- run: deno run --allow-run .github/actions/prettier/app.ts | |
- run: git pull | |
- run: git push |