Skip to content

Bump hono from 4.3.9 to 4.5.8 #24

Bump hono from 4.3.9 to 4.5.8

Bump hono from 4.3.9 to 4.5.8 #24

Workflow file for this run

name: Run tests
on:
push:
branches: ['main']
pull_request:
branches: ['main']
jobs:
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Install Node.js
uses: actions/setup-node@v3
with:
cache: 'npm'
- run: npm ci
- run: npm run lint
check-format:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Install Node.js
uses: actions/setup-node@v3
with:
cache: 'npm'
- run: npm ci
- run: npm run check-format
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Install Node.js
uses: actions/setup-node@v3
with:
cache: 'npm'
- run: npm ci
- run: npm run test