Bump vite from 6.3.5 to 7.1.7 in /client #77
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: Client CI | |
| on: | |
| push: | |
| branches: | |
| - main | |
| paths: | |
| - "client/**" | |
| pull_request: | |
| paths: | |
| - "client/**" | |
| permissions: | |
| contents: read | |
| jobs: | |
| ci: | |
| runs-on: ubuntu-latest | |
| defaults: | |
| run: | |
| working-directory: ./client | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Setup Node.js | |
| uses: actions/setup-node@v4 | |
| with: | |
| node-version: lts/Jod | |
| cache: npm | |
| cache-dependency-path: ./client/package-lock.json | |
| - name: Install dependencies | |
| run: npm ci | |
| build: | |
| runs-on: ubuntu-latest | |
| defaults: | |
| run: | |
| working-directory: ./client | |
| needs: ci | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Setup Node.js | |
| uses: actions/setup-node@v4 | |
| with: | |
| node-version: lts/Jod | |
| cache: npm | |
| cache-dependency-path: ./client/package-lock.json | |
| - name: Install dependencies | |
| run: npm ci | |
| - name: Build check | |
| run: npm run build | |
| lint: | |
| runs-on: ubuntu-latest | |
| defaults: | |
| run: | |
| working-directory: ./client | |
| needs: | |
| - ci | |
| - build | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Setup Node.js | |
| uses: actions/setup-node@v4 | |
| with: | |
| node-version: lts/Jod | |
| cache: npm | |
| cache-dependency-path: ./client/package-lock.json | |
| - name: Install dependencies | |
| run: npm ci | |
| - name: Run ESLint | |
| run: npm run lint |