Skip to content

Remove fetch-mock

Remove fetch-mock #141

Workflow file for this run

name: Tests
on: push
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [18, 20, 22]
steps:
- uses: actions/checkout@v4
- run: corepack enable
- uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
cache: yarn
- run: yarn --immutable
- run: yarn add -D @types/node@${{ matrix.node-version }}
- run: yarn tsc
- run: yarn lint --max-warnings=0
- run: yarn test --coverage
- uses: codecov/codecov-action@v4
with:
flags: "node_${{ matrix.node-version }}"
env:
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}