Skip to content

fix: Narrow 'multiply' return types (#68) #12

fix: Narrow 'multiply' return types (#68)

fix: Narrow 'multiply' return types (#68) #12

Workflow file for this run

name: Test
on:
workflow_call:
secrets:
CODECOV_TOKEN:
required: true
pull_request:
push:
branches:
- main
permissions:
contents: read
jobs:
test:
name: Test
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: 22
registry-url: https://registry.npmjs.org/
cache: npm
- run: npm ci
- run: npm run build
- run: npm test
- if: github.actor != 'dependabot[bot]'
name: Upload coverage reports to Codecov
uses: codecov/codecov-action@v5
with:
token: ${{ secrets.CODECOV_TOKEN }}