Skip to content

The single d.ts file can't be consumed - so emit split ones to a dire… #52

The single d.ts file can't be consumed - so emit split ones to a dire…

The single d.ts file can't be consumed - so emit split ones to a dire… #52

Workflow file for this run

name: build
on: [push, pull_request]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [18, 20]
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
cache: 'npm'
- run: npm ci
- run: npm run lint
- run: npm run build
- run: npm test
- uses: codecov/codecov-action@v4
with:
directory: coverage/
token: ${{ secrets.CODECOV_TOKEN }}