Skip to content

Commit

Permalink
Create prettier-eslint.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
joshua-jinu committed Oct 21, 2024
1 parent 49e432d commit f0b82e7
Showing 1 changed file with 40 additions and 0 deletions.
40 changes: 40 additions & 0 deletions .github/workflows/prettier-eslint.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,40 @@
---
name: Lint and Format

on:
pull_request:
branches:
- main

jobs:
lint-and-format:
runs-on: ubuntu-latest

steps:
- name: Checkout Code
uses: actions/checkout@v2

- name: Set up Node.js
uses: actions/setup-node@v2
with:
node-version: "16"

- name: Install Dependencies
run: npm install

- name: Run ESLint and Prettier
run: |
npm run lint -- --fix
npm run format -- --write
- name: Commit and Push Changes
run: |
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 "chore: auto-fix lint and prettier issues" || echo "No changes to commit"
git push origin feature/prettier-github-action
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

0 comments on commit f0b82e7

Please sign in to comment.