Skip to content

fix(groupBy): return Partial Record #160

fix(groupBy): return Partial Record

fix(groupBy): return Partial Record #160

Workflow file for this run

name: Build
on: [pull_request]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node: ['18', '16']
name: Node ${{ matrix.node }}
steps:
- name: Checkout repository
uses: actions/checkout@v3
- name: Installing Dependencies
run: npm ci
- name: Typechecking
run: npm run typecheck
- name: Linting Codebase
run: npm run lint
# build first
- name: Building Artifacts
run: npm run build
# then test
- name: Unit Testing
run: npm run test