Skip to content

Fixed a regression where floating-point numbers were truncated to integers #6

Fixed a regression where floating-point numbers were truncated to integers

Fixed a regression where floating-point numbers were truncated to integers #6

Workflow file for this run

name: PR Build
on:
pull_request:
types: [opened, synchronize, reopened]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: pnpm/action-setup@v4
- name: Setup Node
uses: actions/setup-node@v3
with:
node-version-file: ".nvmrc"
cache: pnpm
- name: Install
run: pnpm install --frozen-lockfile --prefer-offline
- name: Lint
run: pnpm lint
- name: Build
run: pnpm start