Files
rail-game/.github/workflows/frontend-format.yml
zwitschi 2b9877a9d3
All checks were successful
Backend CI / lint-and-test (push) Successful in 1m56s
feat: add GitHub Actions workflow for frontend formatting and linting
2025-10-11 17:42:20 +02:00

41 lines
1.0 KiB
YAML

name: Frontend Format
on:
pull_request:
paths:
- "frontend/**"
- "scripts/**"
- ".github/workflows/frontend-format.yml"
jobs:
format:
runs-on: ubuntu-latest
steps:
- name: Check out repository
uses: actions/checkout@v4
- name: Set up Node.js
uses: actions/setup-node@v4
with:
node-version: "20"
- name: Install dependencies
working-directory: frontend
run: npm install
- name: Run Prettier
working-directory: frontend
run: npm run format -- --check
- name: Run ESLint (fix mode)
working-directory: frontend
run: npm run lint -- --fix
- name: Upload formatting diff
if: failure()
uses: actions/upload-artifact@v4
with:
name: frontend-formatting-diff
path: frontend