Skip to content

fromPairs() accepts readonly tuples #339

fromPairs() accepts readonly tuples

fromPairs() accepts readonly tuples #339

Workflow file for this run

name: Build
on: [pull_request]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node: ['24', '22', '20']
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