download registrations csv files for events #18
This file contains hidden or 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: 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 . |