Skip to content

feat: add some mutative/destructive tools #23

feat: add some mutative/destructive tools

feat: add some mutative/destructive tools #23

Workflow file for this run

name: CI
on:
push:
branches:
- main
pull_request:
branches:
- main
permissions:
contents: read
jobs:
check:
name: Lint, Typecheck, Test
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v5
- name: Setup Node.js 24
uses: actions/setup-node@v5
with:
node-version: 24
cache: npm
- name: Install dependencies
run: npm ci
- name: Run checks
run: npm run check