Skip to content

chore(deps): security bumps hono 4.13.7, astro 7.3.2, js-yaml 4.3.2 + cloudflare adapter 14.3.1 #235

chore(deps): security bumps hono 4.13.7, astro 7.3.2, js-yaml 4.3.2 + cloudflare adapter 14.3.1

chore(deps): security bumps hono 4.13.7, astro 7.3.2, js-yaml 4.3.2 + cloudflare adapter 14.3.1 #235

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