fix: GitHub repo-meta rate limit + dead ParticleScroll WebGL loop #59
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: Frontend CI | |
| # Validates the skills landing page whenever the data it reads (skills/**) | |
| # or the app itself changes. This is validation only — no deploy step. | |
| # Railway auto-deploy is intentionally deferred; see .github/workflows/README.md. | |
| on: | |
| pull_request: | |
| paths: | |
| - "skills/**" | |
| - "app/**" | |
| - "components/**" | |
| - "lib/**" | |
| - "package.json" | |
| - "package-lock.json" | |
| - "tailwind.config.ts" | |
| - "tsconfig.json" | |
| - ".github/workflows/frontend-ci.yml" | |
| push: | |
| branches: | |
| - main | |
| paths: | |
| - "skills/**" | |
| - "app/**" | |
| - "components/**" | |
| - "lib/**" | |
| - "package.json" | |
| - "package-lock.json" | |
| - "tailwind.config.ts" | |
| - "tsconfig.json" | |
| - ".github/workflows/frontend-ci.yml" | |
| jobs: | |
| build: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - uses: actions/setup-node@v4 | |
| with: | |
| node-version: "22" | |
| cache: "npm" | |
| - run: npm ci | |
| - run: npm run lint | |
| - run: npm run type-check | |
| - run: npm run build |