Add image upload from URL for speakers and companies #85
Workflow file for this run
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 and Format on PR | |
| on: | |
| pull_request: | |
| jobs: | |
| frontend-lint: | |
| name: Frontend ESLint & Prettier | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout repository | |
| uses: actions/checkout@v4 | |
| - name: Setup Node.js | |
| uses: actions/setup-node@v4 | |
| with: | |
| node-version: "23" | |
| cache: "npm" | |
| cache-dependency-path: frontend/package-lock.json | |
| - name: Install frontend dependencies | |
| working-directory: frontend | |
| run: npm ci | |
| - name: Run ESLint (auto-fix) | |
| working-directory: frontend | |
| run: npm run lint | |
| - name: Run Prettier check | |
| working-directory: frontend | |
| run: npx prettier --check . | |
| - name: Build frontend | |
| working-directory: frontend | |
| run: npm run build |