Skip to content

Feat: (De)serialization of bigint and long #31

Feat: (De)serialization of bigint and long

Feat: (De)serialization of bigint and long #31

Workflow file for this run

name: Run Tests
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: ['20.x', '22.x', '24.x']
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
- name: Install dependencies
run: npm install
- name: Run lint
run: npm run lint
- name: Run format check
run: npx prettier --check 'src/**/*.{ts,tsx,js,jsx}'
- name: Run tests
run: npm test