Merge pull request #19 from CommandOSSLabs/feat/roadmap-visualize-ref #32
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. | |
| # See deploy-frontend.yml and .github/workflows/README.md for the deploy leg. | |
| 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 |