Skip to content

Merge pull request #92 from preeeetham/feat/methods-page #187

Merge pull request #92 from preeeetham/feat/methods-page

Merge pull request #92 from preeeetham/feat/methods-page #187

name: Format and Push
on:
push:
branches:
- main
pull_request:
branches:
- main
- 'feat/*'
- 'bugfix/*'
permissions:
contents: write
jobs:
format:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
with:
ref: ${{ github.head_ref }} # Checkout the PR branch
- uses: pnpm/action-setup@v4
name: Install pnpm
with:
version: 9.12.1
run_install: false
- name: Set up Node.js
uses: actions/setup-node@v4
with:
node-version: '21.7.1'
cache: 'pnpm'
- name: Cache pnpm modules
uses: actions/cache@v3
with:
path: ~/.pnpm-store
key: ${{ runner.os }}-pnpm-${{ hashFiles('**/pnpm-lock.yaml') }}
restore-keys: |
${{ runner.os }}-pnpm-
- name: Install dependencies & turbo
run: pnpm install && pnpm i -g turbo
- name: Format code with Prettier
run: turbo format:write
- name: Check for changes and push if needed
run: |
if [ -n "$(git status --porcelain)" ]; then
git config --global user.name "github-actions[bot]"
git config --global user.email "github-actions[bot]@users.noreply.github.com"
git add .
git commit -m "format: make the code prettier"
git push origin ${{ github.head_ref }}
else
echo "No formatting changes to push."
fi