Skip to content

fix(cli): add all options to cli #315

fix(cli): add all options to cli

fix(cli): add all options to cli #315

Workflow file for this run

name: ci
on:
pull_request:
branches:
- main
concurrency:
group: ${{ github.ref }}
cancel-in-progress: true
jobs:
tests:
strategy:
matrix:
os:
- macos-15
- ubuntu-24.04
- windows-2025
fail-fast: false
runs-on: ${{ matrix.os }}
steps:
- name: Checkout repository
uses: actions/[email protected]
- name: Get Node version from NW.js versions manifest
run: echo "NODE_VER=$(curl -s https://nwjs.io/versions | jq -r ".versions[0].components.node")" >> $GITHUB_ENV
- name: Setup Node
uses: actions/[email protected]
with:
node-version: ${{ env.NODE_VER }}
cache: "npm"
- name: Install dependencies
run: npm ci --nwjs-build-type=sdk
- name: Run tests
run: npm t
- name: Report Coverage
if: always()
uses: davelosert/[email protected]