Skip to content

fix(deps): add missing nested optional peer entry for jayson's ws@7 #35

fix(deps): add missing nested optional peer entry for jayson's ws@7

fix(deps): add missing nested optional peer entry for jayson's ws@7 #35

Workflow file for this run

name: CI
on:
pull_request:
push:
branches-ignore: ["master"]
jobs:
verify:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: 20
cache: npm
- name: Install
run: npm ci
# Lint is non-blocking: the repo has a large pre-existing lint baseline
# (~800 errors). Surfaced for visibility but does not fail the build. The
# pre-commit hook (lint-staged) keeps NEW/changed files clean going
# forward; clearing the legacy baseline is tracked separately.
- name: Lint (non-blocking)
run: npm run lint
continue-on-error: true
- name: Typecheck
run: npm run typecheck
- name: Unit tests
run: npm run test:unit