Skip to content

fix: README source checkout points to dist/cli.js instead of dist/ind… #32

fix: README source checkout points to dist/cli.js instead of dist/ind…

fix: README source checkout points to dist/cli.js instead of dist/ind… #32

Workflow file for this run

name: CI
on:
push:
branches: [main]
pull_request:
branches: [main]
permissions:
contents: read
jobs:
ci:
name: Build & Test
runs-on: ubuntu-latest
env:
FORCE_JAVASCRIPT_ACTIONS_TO_NODE24: true
strategy:
matrix:
node-version: [22, 24]
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
cache: npm
- run: npm ci
- run: npx turbo build
- run: npx turbo type-check
- run: npx turbo test
- run: npm run validate:packs