Skip to content

fix: separate CJS vs ESM type defs #48

fix: separate CJS vs ESM type defs

fix: separate CJS vs ESM type defs #48

Workflow file for this run

name: CI
on: [push, pull_request]
jobs:
test:
name: Node.js v${{ matrix.nodejs }} (${{ matrix.os }})
runs-on: ubuntu-latest
strategy:
matrix:
nodejs: [8, 10, 12, 14, 16, 18, 20]
os: [ubuntu-latest, windows-latest, macOS-latest]
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: ${{ matrix.nodejs }}
- name: Install
run: npm install
- name: Test
if: matrix.nodejs < 20
run: npm test
- name: Test w/ Coverage
if: matrix.nodejs >= 20
run: |
npm install -g c8
c8 --include=src npm test
- name: Report
if: matrix.nodejs >= 20 && matrix.os == 'ubuntu-latest'
run: |
c8 report --reporter=text-lcov > coverage.lcov
bash <(curl -s https://codecov.io/bash)
env:
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}