Bump undici from 6.26.0 to 6.28.0 in /apps/web #133
Workflow file for this run
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: CI | |
| on: | |
| pull_request: | |
| push: | |
| branches: | |
| - main | |
| permissions: | |
| contents: read | |
| concurrency: | |
| group: ci-${{ github.workflow }}-${{ github.ref }} | |
| cancel-in-progress: true | |
| jobs: | |
| code: | |
| name: Code checks (${{ matrix.os }}) | |
| runs-on: ${{ matrix.os }} | |
| strategy: | |
| fail-fast: false | |
| matrix: | |
| os: | |
| - ubuntu-latest | |
| - windows-latest | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v4 | |
| - name: Set up Node | |
| uses: actions/setup-node@v4 | |
| with: | |
| node-version: "24" | |
| - name: Install dependencies | |
| run: | | |
| npm ci | |
| npm ci --prefix apps/web | |
| npm ci --prefix apps/worker | |
| npm ci --prefix packages/cli | |
| npm ci --prefix apps/desktop | |
| - name: Typecheck | |
| run: npm run typecheck | |
| - name: Lint web | |
| run: npm --prefix apps/web run lint | |
| - name: Build web | |
| run: npm --prefix apps/web run build | |
| - name: Validate CLI launcher | |
| run: | | |
| npm --prefix packages/cli run build | |
| npm --prefix packages/cli-local-win32-x64 run build | |
| - name: Validate local supervisor | |
| run: npm --prefix packages/local-supervisor run build | |
| - name: Validate desktop shell | |
| run: npm --prefix apps/desktop run build | |
| docs: | |
| name: Docs check | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v4 | |
| - name: Set up Node | |
| uses: actions/setup-node@v4 | |
| with: | |
| node-version: "24" | |
| - name: Install Mintlify CLI | |
| run: npm install -g mint@latest | |
| - name: Validate Mintlify docs | |
| working-directory: docs | |
| run: mint validate |