Skip to content

chore(deps): bump react from 19.2.8 to 19.3.0 in /cod-client-astro #229

chore(deps): bump react from 19.2.8 to 19.3.0 in /cod-client-astro

chore(deps): bump react from 19.2.8 to 19.3.0 in /cod-client-astro #229

Workflow file for this run

name: CI
on:
push:
branches: [main]
pull_request:
permissions:
contents: read
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
server:
name: cod-server (typecheck + test)
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v7
- uses: actions/setup-node@v7
with:
node-version: 24
cache: npm
cache-dependency-path: package-lock.json
- run: npm ci
- run: npm run typecheck --workspace codflow-server
- run: npm test --workspace codflow-server
dashboard:
name: cod-client-astro (typecheck + test)
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v7
- uses: actions/setup-node@v7
with:
node-version: 24
cache: npm
cache-dependency-path: package-lock.json
- run: npm ci
- run: npm run typecheck --workspace codflow-client-astro
- run: npm test --workspace codflow-client-astro
theme01:
name: theme01 (astro check + test)
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v7
- uses: actions/setup-node@v7
with:
node-version: 24
cache: npm
cache-dependency-path: package-lock.json
- run: npm ci
- run: npx astro check
working-directory: cod-astro/theme01
- run: npm test
working-directory: cod-astro/theme01