Skip to content

(new) renameKeys and 0.31.0 bump #337

(new) renameKeys and 0.31.0 bump

(new) renameKeys and 0.31.0 bump #337

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