Skip to content

Role-tailored questions, capped at 10 (v0.4.0) #4

Role-tailored questions, capped at 10 (v0.4.0)

Role-tailored questions, capped at 10 (v0.4.0) #4

Workflow file for this run

name: CI
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [18, 20, 22]
steps:
- uses: actions/checkout@v5
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v5
with:
node-version: ${{ matrix.node-version }}
cache: npm
- run: npm ci
- run: npm run build
- name: Smoke test the built CLI
run: |
node dist/cli.js --version
node dist/cli.js --list --no-color > /dev/null
printf 'y\nn\n' | node dist/cli.js quick --no-detect --no-save --no-color > /dev/null