Update main.yml #5
Workflow file for this run
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: Code Quality Check | |
on: [push, pull_request] | |
jobs: | |
lint-and-format: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
with: | |
token: ${{ secrets.GITHUB_TOKEN }} | |
- name: Set up Node.js | |
uses: actions/setup-node@v2 | |
with: | |
node-version: '20' # Specify your Node.js version here | |
- name: Install Dependencies | |
run: npm install | |
- name: Auto-format with Prettier | |
run: | | |
npx prettier --write . | |
git config --global user.name 'PiplineFormater' | |
git config --global user.email 'PiplineFormater@PiplineFormater.alpha' | |
git commit -am "Apply Prettier formatting" || true | |
git push | |
- name: Run Linters | |
run: npm run lint |