Skip to content

refactor(cli): use util.parseArgs to parse arguments #455

refactor(cli): use util.parseArgs to parse arguments

refactor(cli): use util.parseArgs to parse arguments #455

Workflow file for this run

name: CI
on: [push, pull_request]
jobs:
test:
strategy:
fail-fast: false
matrix:
os:
- 'ubuntu-latest'
# - 'macos-latest'
# - 'windows-latest'
node_version:
- '22'
- '20'
name: Node.js ${{ matrix.node_version }} on ${{ matrix.os }}
runs-on: ${{ matrix.os }}
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node_version }}
- name: Install Dependencies
run: npm ci
- name: Lint
if: matrix.node_version == '22'
run: npm run lint
- name: Run Tests
run: npm run test-coverage