chore(deps-functions): bump @types/node from 20.19.37 to 25.8.0 in /functions #25
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: CI | |
| on: | |
| pull_request: | |
| branches: [main] | |
| push: | |
| branches: [main] | |
| concurrency: | |
| group: ci-${{ github.ref }} | |
| cancel-in-progress: true | |
| jobs: | |
| verify: | |
| runs-on: ubuntu-latest | |
| # Vite env vars are needed both at test time (src/firebase/config.ts | |
| # initializes Auth at module load) and at build time. Real values come | |
| # from secrets in deploy.yml; CI uses harmless but format-valid placeholders. | |
| env: | |
| VITE_FIREBASE_API_KEY: AIzaSyA0000000000000000000000000000000 | |
| VITE_FIREBASE_AUTH_DOMAIN: ci-placeholder.firebaseapp.com | |
| VITE_FIREBASE_PROJECT_ID: ci-placeholder | |
| VITE_FIREBASE_STORAGE_BUCKET: ci-placeholder.appspot.com | |
| VITE_FIREBASE_MESSAGING_SENDER_ID: "0" | |
| VITE_FIREBASE_APP_ID: "1:0:web:0" | |
| VITE_APP_URL: http://localhost:5173 | |
| VITE_USE_EMULATORS: "false" | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - uses: actions/setup-node@v4 | |
| with: | |
| node-version: 20 | |
| cache: npm | |
| - name: Install dependencies | |
| run: npm ci | |
| - name: Typecheck | |
| run: npm run typecheck | |
| - name: Test | |
| run: npm run test | |
| - name: Build | |
| run: npm run build |