fix pricing for Ball event (BRUH IM SO TIRED) #453
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: Format Code | |
on: | |
push: | |
branches: | |
- "**" | |
jobs: | |
format: | |
runs-on: ubuntu-latest | |
defaults: | |
run: | |
working-directory: . | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v4 | |
with: | |
token: ${{ secrets.GITHUB_TOKEN }} | |
- name: Setup Node.js environment | |
uses: actions/setup-node@v4 | |
with: | |
node-version: '20' | |
- name: Install dependencies | |
run: yarn install --frozen-lockfile | |
- name: Format code with Prettier | |
run: yarn format | |
- name: Check for changes | |
id: git_changes | |
run: | | |
git config --global user.name 'github-actions[bot]' | |
git config --global user.email 'github-actions[bot]@users.noreply.github.com' | |
if [ -n "$(git status --porcelain)" ]; then | |
echo "changes_detected=true" >> "$GITHUB_ENV" | |
else | |
echo "changes_detected=false" >> "$GITHUB_ENV" | |
fi | |
- name: Commit and push changes | |
if: ${{ env.changes_detected == 'true' }} | |
run: | | |
git add . | |
git commit -m "Format code with Prettier" | |
git push | |