Skip to content

Bump hono from 4.12.2 to 4.12.7 (#452) #245

Bump hono from 4.12.2 to 4.12.7 (#452)

Bump hono from 4.12.2 to 4.12.7 (#452) #245

Workflow file for this run

name: Node.js CI
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
jobs:
build:
name: Node.js ${{ matrix.node-version }}
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
node-version: [20.x, 22.x] # https://github.com/nodejs/release#release-schedule
steps:
- uses: actions/checkout@v6
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v6
with:
node-version: ${{ matrix.node-version }}
- run: npm ci
- run: npm run build
eslint:
name: ESLint
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
- run: npm ci
- run: npm run lint
env:
CI: true