Skip to content

add ask mode

add ask mode #47

Workflow file for this run

name: ci
permissions: {}
on:
pull_request:
branches: [ main ]
jobs:
build:
runs-on: ubuntu-latest
timeout-minutes: 5
strategy:
matrix:
node-version: [22.x, 24.x]
steps:
- uses: actions/checkout@v5
- name: use node.js $ {{ matrix.node-version }}
uses: actions/setup-node@v5
with:
node-version: ${{ matrix.node-version }}
- name: install deps
run: npm ci
- name: lint
run: npm run lint
- name: build
run: npm run build
- name: run tests
run: npm run test