fix(cli): handle boolean type options correctly #942
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: e2e | |
on: | |
pull_request: | |
branches: | |
- main | |
concurrency: | |
group: ${{ github.ref }} | |
cancel-in-progress: true | |
jobs: | |
tests: | |
strategy: | |
matrix: | |
os: | |
- macos-14 | |
- ubuntu-22.04 | |
- windows-2022 | |
fail-fast: false | |
runs-on: ${{ matrix.os }} | |
permissions: | |
contents: read | |
pull-requests: write | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v4.2.1 | |
- name: Setup Volta | |
uses: volta-cli/action@v4.2.1 | |
- name: Node.js version | |
run: node -v | |
- name: npm version | |
run: npm -v | |
- name: Install dependencies | |
run: npm ci | |
- name: Check for linting errors | |
run: npm run lint | |
- name: Run tests | |
run: npm run test:cov | |
- name: Report Coverage | |
if: always() | |
uses: davelosert/vitest-coverage-report-action@v2.6.0 |