Skip to content

docs: polish release-facing wording #296

docs: polish release-facing wording

docs: polish release-facing wording #296

Workflow file for this run

name: Validate Schemas
on:
push:
branches:
- main
tags:
- "v*"
pull_request:
branches:
- main
jobs:
validate:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
node-version: [20, 22]
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
cache: npm
- name: Install dependencies
run: npm ci
- name: Validate package
run: npm run validate
- name: Verify checksums
run: npm run checksums:verify
- name: Smoke test entrypoint import
run: npm run test:smoke:import
- name: Smoke test npm pack
run: npm run test:smoke:pack