Bump vite from 8.0.5 to 8.0.16 in /frontend #816
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 | |
| on: | |
| push: | |
| pull_request: | |
| concurrency: | |
| group: ${{ github.workflow }}-${{ github.ref }} | |
| cancel-in-progress: true | |
| jobs: | |
| check: | |
| runs-on: ubuntu-24.04 | |
| strategy: | |
| fail-fast: false | |
| matrix: | |
| task: | |
| - name: Validate | |
| command: make ui-validate | |
| - name: Test | |
| command: make ui-test | |
| name: ${{ matrix.task.name }} | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Install Node | |
| uses: actions/setup-node@v4 | |
| with: | |
| node-version: '24' | |
| - name: Install PNPM | |
| uses: pnpm/action-setup@v4 | |
| with: | |
| version: 9 | |
| - name: Cache node packages | |
| uses: actions/cache@v4 | |
| env: | |
| cache-name: cache-node_modules | |
| with: | |
| path: frontend/node_modules | |
| key: ${{ runner.os }}-build-${{ env.cache-name }}-${{ hashFiles('frontend/pnpm-lock.yaml') }} | |
| - name: Install node packages | |
| run: make pre-ui | |
| - name: ${{ matrix.task.name }} | |
| run: ${{ matrix.task.command }} |