docs: correct ignore method names #339
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: CI | |
on: [push, pull_request] | |
jobs: | |
build: | |
strategy: | |
matrix: | |
node-version: [20.x, 22.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@v3 | |
- name: Use Nodejs ${{ matrix.node-version }} | |
uses: actions/setup-node@v3 | |
with: | |
node-version: ${{ matrix.node-version }} | |
cache: npm | |
- name: Install dependencies | |
run: npm ci | |
- 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 |