Skip to content

add TOOLS_EXAMPLE.md #14

add TOOLS_EXAMPLE.md

add TOOLS_EXAMPLE.md #14

Workflow file for this run

name: CI
on:
push:
branches: [main, master]
pull_request:
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [18, 20, 22]
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
cache: npm
- run: npm ci
- run: npm run typecheck
- run: npm run lint
- run: npm test
- run: npm run test:contracts
- run: npm run test:security
- run: npm run build
- run: npm run bench:smoke
- run: npm audit --audit-level=moderate
- run: npm run package:check
- run: npm run pack:smoke