Skip to content

fix(deps): bump mongoose, hono, fast-uri, ip-address, body-parser for… #30

fix(deps): bump mongoose, hono, fast-uri, ip-address, body-parser for…

fix(deps): bump mongoose, hono, fast-uri, ip-address, body-parser for… #30

Workflow file for this run

name: CI/CD Pipeline
on:
push:
branches: [main]
pull_request:
branches: [main]
workflow_dispatch:
jobs:
build:
name: Build and Test
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v6
- name: Install pnpm
uses: pnpm/action-setup@v4
with:
version: 9.15.9
- name: Setup Node.js
uses: actions/setup-node@v6
with:
node-version: 22
cache: pnpm
- name: Install dependencies
run: pnpm install --frozen-lockfile
- name: Type check
run: pnpm typecheck
- name: Build
run: pnpm build
- name: Verify build output
run: test -f build/index.js