Skip to content

download registrations csv files for events #18

download registrations csv files for events

download registrations csv files for events #18

Workflow file for this run

name: Lint & Format Check
on:
push:
branches: [main, master, dev, feature/**]
pull_request:
branches: [main, master, dev, feature/**]
jobs:
lint-format:
name: Check ESLint & Prettier
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Set up pnpm
uses: pnpm/action-setup@v3
with:
version: 9
- name: Set up Node.js
uses: actions/setup-node@v4
with:
node-version: 20
cache: 'pnpm'
- name: Install dependencies
run: pnpm install --frozen-lockfile
# --- ESLint Check ---
# - name: Run ESLint (via script)
# run: pnpm lint --max-warnings=0
# --- Prettier Check ---
- name: Check Prettier formatting (no write)
run: pnpm exec prettier --check .