Skip to content

show what's being formatted #389

show what's being formatted

show what's being formatted #389

Workflow file for this run

name: CI
on:
push:
branches: ["main"]
pull_request_target:
paths:
- 'src/**'
- 'test/**'
- '*.json'
- '*.js'
- '*.ts'
- 'lib/**'
- 'scripts/**'
- '.github/workflows/ci.yml'
- 'package.json'
workflow_dispatch:
permissions:
contents: read
jobs:
build:
strategy:
matrix:
node-version: [18.x, 20.x, 22.x, 24.x, 25.x]
platform:
- os: ubuntu-latest
shell: bash
- os: macos-latest
shell: bash
- os: windows-latest
shell: bash
- os: windows-latest
shell: powershell
fail-fast: false
runs-on: ${{ matrix.platform.os }}
defaults:
run:
shell: ${{ matrix.platform.shell }}
steps:
- name: Checkout Repository
uses: actions/checkout@v6
- name: Use Nodejs ${{ matrix.node-version }}
uses: actions/setup-node@v6
with:
node-version: ${{ matrix.node-version }}
- name: Install dependencies
run: npm install
- name: Run Tests Windows (incomplete coverage)
if: matrix.platform.os == 'windows-latest'
run: npm test -- -c -t0 --allow-incomplete-coverage
- name: Run Tests Unix (complete coverage)
if: matrix.platform.os != 'windows-latest'
run: npm test -- -c -t0