Skip to content

chore(deps): bump hono from 4.12.12 to 4.12.14 in the npm_and_yarn group across 1 directory #610

chore(deps): bump hono from 4.12.12 to 4.12.14 in the npm_and_yarn group across 1 directory

chore(deps): bump hono from 4.12.12 to 4.12.14 in the npm_and_yarn group across 1 directory #610

Workflow file for this run

name: CI
permissions:
contents: read
on:
push:
branches: [main]
pull_request:
branches: [main]
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
ci:
name: Node ${{ matrix.node-version }}
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
node-version: [22, 24]
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Install pnpm
uses: pnpm/action-setup@v4
- name: Setup Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
cache: pnpm
- name: Install dependencies
run: pnpm install --frozen-lockfile
- name: Build
run: pnpm turbo build
- name: Lint
run: pnpm turbo lint
- name: Typecheck
run: pnpm turbo typecheck
- name: Test
run: pnpm turbo test