Skip to content

feat: add command suggestions #550

feat: add command suggestions

feat: add command suggestions #550

Workflow file for this run

name: CI
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
build:
strategy:
matrix:
version: [18, 20, 22]
os: ["macos-latest", "windows-latest", "ubuntu-latest"]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v4
- name: Use Node.js ${{ matrix.version }}.x
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.version }}
- run: npm ci
- run: npm run lint
- run: npm test
- run: npm run build
- run: npm link