Skip to content

Commit

Permalink
Update prettier-eslint.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
joshua-jinu committed Oct 22, 2024
1 parent f0b82e7 commit 865ebc0
Showing 1 changed file with 8 additions and 18 deletions.
26 changes: 8 additions & 18 deletions .github/workflows/prettier-eslint.yml
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
---
name: Lint and Format
name: Prettier Lint and Format

on:
pull_request:
branches:
- main

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

steps:
Expand All @@ -17,24 +17,14 @@ jobs:
- name: Set up Node.js
uses: actions/setup-node@v2
with:
node-version: "16"
node-version: "20.x"

- name: Install Dependencies
run: npm install

- name: Run ESLint and Prettier
run: |
npm run lint -- --fix
npm run format -- --write
cd ../../server && npm i
cd ../client && npm i
- name: Commit and Push Changes
- name: Run ESLint and Prettier
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 }}
npm run lint
npm run format

0 comments on commit 865ebc0

Please sign in to comment.