Skip to content

chore: Create run-test.yml #17

chore: Create run-test.yml

chore: Create run-test.yml #17

Workflow file for this run

name: Lint & Format
on:
pull_request:
branches: [ "main", "dev" ]
jobs:
lint:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v3
with:
ref: ${{ github.head_ref }}
- name: Set up Node.js
uses: actions/setup-node@v3
with:
node-version: '22'
- name: Install dependencies
run: npm install
- name: Run ESLint
run: npm run lint-fix
- name: Run Prettier
run: npm run prettier-fix
- name: Commit changes if any
run: |
git config --global user.name 'github-actions[bot]'
git config --global user.email 'github-actions[bot]@users.noreply.github.com'
BRANCH_NAME="${GITHUB_HEAD_REF}"
git diff --quiet || (git add . && git commit -m 'chore: auto-fix linting and formatting issues' && git push https://github-actions:${{ secrets.GITHUB_TOKEN }}@github.com/${{ github.repository }}.git HEAD:$BRANCH_NAME)
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}