Skip to content

changelog: update for 0.4.0 #67

changelog: update for 0.4.0

changelog: update for 0.4.0 #67

Workflow file for this run

name: CI
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
workflow_call:
jobs:
build-and-test:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@df4cb1c069e1874edd31b4311f1884172cec0e10 # v6.0.3
- name: Setup Node.js
uses: actions/setup-node@48b55a011bda9f5d6aeb4c2d9c7362e8dae4041e # v6.4.0
with:
node-version-file: '.nvmrc'
cache: 'npm'
- name: Install dependencies
run: npm ci
- name: Build packages
run: npm run build
- name: OxLint Check
run: npm run lint
- name: Biome Format Check
run: npm run format
- name: Knip Check
run: npm run knip
- name: Run tests
run: npm run test:ci