Skip to content

fix: require Maybe#getOr callback to return the same type #12

fix: require Maybe#getOr callback to return the same type

fix: require Maybe#getOr callback to return the same type #12

Workflow file for this run

name: Checks
on: [pull_request]
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
checks:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: pnpm/action-setup@v2
- uses: actions/setup-node@v4
with:
cache: pnpm
node-version-file: .nvmrc
- run: pnpm install --frozen-lockfile
- run: pnpm run format:check
- run: pnpm run lint
- run: pnpm run build
- run: pnpm test