deps(npm): bump autoprefixer from 10.4.27 to 10.5.0 in /platform/control_web #51
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
| # Frontend CI — ESLint + TypeScript check + Vite build | |
| # Triggered on PR/push to main when frontend code changes | |
| # Uses matrix strategy to validate both control_web and portal_web in parallel | |
| name: Frontend CI | |
| on: | |
| push: | |
| branches: [main] | |
| paths: | |
| - "platform/control_web/**" | |
| - "platform/portal_web/**" | |
| - ".github/workflows/frontend-ci.yml" | |
| pull_request: | |
| branches: [main] | |
| paths: | |
| - "platform/control_web/**" | |
| - "platform/portal_web/**" | |
| - ".github/workflows/frontend-ci.yml" | |
| permissions: | |
| contents: read | |
| jobs: | |
| frontend-ci: | |
| name: frontend-ci (${{ matrix.project }}) | |
| runs-on: ubuntu-latest | |
| strategy: | |
| fail-fast: false | |
| matrix: | |
| project: [control_web, portal_web] | |
| defaults: | |
| run: | |
| working-directory: platform/${{ matrix.project }} | |
| steps: | |
| - name: Checkout code | |
| uses: actions/checkout@v4 | |
| - name: Setup Node.js | |
| uses: actions/setup-node@v4 | |
| with: | |
| node-version: "20" | |
| cache: "npm" | |
| cache-dependency-path: platform/${{ matrix.project }}/package-lock.json | |
| - name: Install dependencies | |
| run: npm ci | |
| - name: Run ESLint | |
| run: npm run lint | |
| - name: Run TypeScript type check | |
| run: npm run type-check | |
| - name: Build project | |
| run: npm run build |