Skip to content

Merge pull request #83 from IMS-IIITH/bank-details #112

Merge pull request #83 from IMS-IIITH/bank-details

Merge pull request #83 from IMS-IIITH/bank-details #112

Workflow file for this run

name: Auto Formatting
on:
push:
branches:
- master
- main
jobs:
formatting:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Set up Node
uses: actions/setup-node@v4
with:
node-version: 20
- name: Install Prettier
run: |
npm install --global prettier
- name: Format with Prettier
run: prettier --write "**/*.{js,jsx,ts,tsx,md,mdx,css,yaml,json}"
- uses: stefanzweifel/git-auto-commit-action@v5
with:
commit_message: Apply Prettier Formatting Fixes