Skip to content

Merge pull request #87 from batjko/dependabot/npm_and_yarn/hono-4.12.14 #266

Merge pull request #87 from batjko/dependabot/npm_and_yarn/hono-4.12.14

Merge pull request #87 from batjko/dependabot/npm_and_yarn/hono-4.12.14 #266

Workflow file for this run

name: CI
on:
push:
branches: [master]
pull_request:
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [22.x]
steps:
- uses: actions/checkout@v4
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
cache: npm
- name: Install dependencies
run: npm ci
- name: Generate Prisma client
run: npm run db:generate
- name: Generate GraphQL types
run: npm run codegen
- name: Lint
run: npm run lint
- name: Typecheck
run: npm run typecheck
- name: Test
run: npm run test