Skip to content

Refactor help option and improve option parsing from parent when default command is invoked implicitly #1828

Refactor help option and improve option parsing from parent when default command is invoked implicitly

Refactor help option and improve option parsing from parent when default command is invoked implicitly #1828

Workflow file for this run

name: build
on: [push, pull_request]
permissions:
contents: read
jobs:
test:
name: Test on node ${{ matrix.node-version }} and ${{ matrix.os }}
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
node-version: [16.x, 18.x, 20.x]
os: [ubuntu-latest, windows-latest, macos-latest]
steps:
- uses: actions/checkout@v3
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v3
with:
cache: 'npm'
node-version: ${{ matrix.node-version }}
# Use separate run commands so command status handled correctly on Windows
- name: npm install
run: npm ci
- name: npm test
run: npm test
- name: npm run lint
run: npm run lint