Skip to content

deps-dev(deps-dev): bump the dev-dependencies group across 1 directory with 3 updates #6

deps-dev(deps-dev): bump the dev-dependencies group across 1 directory with 3 updates

deps-dev(deps-dev): bump the dev-dependencies group across 1 directory with 3 updates #6

Workflow file for this run

name: CI
# PR-time typecheck+test+build gate. release.yml's `test` job runs the full
# [20.x, 22.x] matrix but only on push (main/next/beta/alpha) — PRs got zero
# CI signal before this. This is a lightweight single-version companion, not
# a replacement for that matrix.
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7.0.1
- name: Setup Node.js
uses: actions/setup-node@820762786026740c76f36085b0efc47a31fe5020 # v7.0.0
with:
node-version: '20'
cache: 'npm'
- name: Install dependencies
run: npm ci
- name: Type check
run: npm run lint
- name: Test
run: npm test
- name: Build
run: npm run build