Skip to content

test: maximize coverage and document updated testing standards #3

test: maximize coverage and document updated testing standards

test: maximize coverage and document updated testing standards #3

Workflow file for this run

name: CI
on:
push:
branches:
- "**"
pull_request:
branches:
- "**"
concurrency:
group: ci-${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
build-test:
name: Type Check, Test, Build
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup Node
uses: actions/setup-node@v4
with:
node-version: "22.14.0"
cache: npm
- name: Install dependencies
run: npm ci
- name: Type check
run: npm run type-check
- name: Run tests with coverage gate
run: npm run test:ci
- name: Build
run: npm run build