Skip to content

chore: add a dependency watcher (#1) #6

chore: add a dependency watcher (#1)

chore: add a dependency watcher (#1) #6

Workflow file for this run

# GOLDEN CI FLOOR — from dotfiles/templates/ci/ci-npm.yml.
name: CI
on:
push:
branches: [main]
pull_request:
branches: [main]
workflow_dispatch:
# A newer push makes the older run obsolete — don't waste minutes finishing it.
concurrency:
group: ci-${{ github.ref }}
cancel-in-progress: true
jobs:
verify:
runs-on: ubuntu-latest
timeout-minutes: 15
steps:
- uses: actions/checkout@v7
- uses: actions/setup-node@v7
with:
node-version: 20
cache: npm
- name: Install
run: npm ci
# SSOT: "verified" is defined ONCE, in package.json `verify`
# (= lint + typecheck + build + test), and run identically here and
# locally via `npm run verify`. Change the checks in one place, not two.
- name: Verify
run: npm run verify