Bump the development-dependencies group with 5 updates #56
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: | |
| push: | |
| pull_request: | |
| permissions: | |
| contents: read | |
| concurrency: | |
| group: ci-${{ github.workflow }}-${{ github.ref }} | |
| cancel-in-progress: true | |
| jobs: | |
| validate: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v6 | |
| - uses: actions/setup-node@v6 | |
| with: | |
| node-version: "22.12.0" | |
| cache: npm | |
| - run: npm ci | |
| - run: npm run check | |
| - run: npm run smoke:packed | |
| generated-runtime-matrix: | |
| name: generated-runtime-matrix (${{ matrix.group.name }}) | |
| needs: validate | |
| runs-on: ubuntu-latest | |
| timeout-minutes: 30 | |
| strategy: | |
| fail-fast: false | |
| max-parallel: 3 | |
| matrix: | |
| group: | |
| - name: frontend-core | |
| args: --scenario landing-react-vite --scenario frontend-nextjs --scenario frontend-astro --scenario frontend-remix-bun | |
| - name: frontend-apps | |
| args: --scenario frontend-vue-vite --scenario frontend-nuxt --scenario frontend-svelte --scenario frontend-solidjs | |
| - name: backends | |
| args: --scenario backend-express --scenario backend-fastify --scenario backend-hono --scenario backend-koa-javascript --scenario backend-nestjs | |
| - name: fullstack-workspaces | |
| args: --scenario fullstack-nextjs --scenario fullstack-react-api --scenario microfrontend-workspace | |
| - name: extensions-cli | |
| args: --scenario chrome-extension-react --scenario chrome-extension-vanilla-ts --scenario cli-tool | |
| steps: | |
| - uses: actions/checkout@v6 | |
| - uses: oven-sh/setup-bun@v2 | |
| with: | |
| bun-version: latest | |
| - uses: actions/setup-node@v6 | |
| with: | |
| node-version: "22.12.0" | |
| cache: npm | |
| - run: npm ci | |
| - run: npm run build | |
| - run: node dist/bin/runtime-matrix.js ${{ matrix.group.args }} |