Skip to content

[added] an option to support callee.excludes #27

[added] an option to support callee.excludes

[added] an option to support callee.excludes #27

Workflow file for this run

name: CI for Windows
on: [push, pull_request]
jobs:
coverage:
runs-on: windows-latest
strategy:
matrix:
node-version: [16.x, 18.x, 20.x]
steps:
- name: Set git to use LF
run: |
git config --global core.autocrlf false
git config --global core.eol lf
- name: Check out the code
uses: actions/checkout@v4
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
- run: npm ci
- run: npm run lint
- run: npm test
- run: npm run coverage