Skip to content

docs: update README to recommend 'npm run verify' #99

docs: update README to recommend 'npm run verify'

docs: update README to recommend 'npm run verify' #99

Workflow file for this run

name: CI
on:
push:
branches:
- main
pull_request:
jobs:
build-and-test:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
with:
submodules: recursive
- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version: "20"
cache: "npm"
- name: Install dependencies
run: npm ci
- name: Verify
run: npm run verify