Skip to content

fix(deps): override transitive vulns (hono, ip-address, postcss) — v8… #11

fix(deps): override transitive vulns (hono, ip-address, postcss) — v8…

fix(deps): override transitive vulns (hono, ip-address, postcss) — v8… #11

Workflow file for this run

name: CI
on:
push:
branches: [master]
pull_request:
branches: [master]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [20, 22]
steps:
- uses: actions/checkout@v6
- uses: actions/setup-node@v6
with:
node-version: ${{ matrix.node-version }}
- run: npm ci
- run: npm run build
- run: npm test
- name: Verify dist output
run: node -e "import('./dist/config.js').then(m => console.log('config OK'))"
- name: Dry-run pack
run: npm pack --dry-run