Skip to content

Update README to remove npm run build command #2

Update README to remove npm run build command

Update README to remove npm run build command #2

Workflow file for this run

name: CI
on:
push:
branches:
- main
pull_request:
jobs:
test:
runs-on: ubuntu-latest
permissions:
contents: read
strategy:
fail-fast: false
matrix:
node-version: [20, 22]
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup Node
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
cache: npm
- name: Install dependencies
run: npm ci
- name: Run lint
run: npm run lint
- name: Run typecheck
run: npm run typecheck
- name: Run unit tests
run: npm run test:unit
- name: Run build
run: npm run build