Skip to content

new(isNotEmpty) add types for isNotEmpty function, and update isEmpty #319

new(isNotEmpty) add types for isNotEmpty function, and update isEmpty

new(isNotEmpty) add types for isNotEmpty function, and update isEmpty #319

Workflow file for this run

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