Skip to content

fix: 修复字符串类型数字的加法运算结果为字符串拼接的问题 #24

fix: 修复字符串类型数字的加法运算结果为字符串拼接的问题

fix: 修复字符串类型数字的加法运算结果为字符串拼接的问题 #24

Workflow file for this run

name: 'Tests'
on:
push:
branches:
- '**'
paths-ignore:
- README.md
- CONTRIBUTING.md
pull_request:
branches:
- '**'
jobs:
test:
runs-on: ${{ matrix.os }}
continue-on-error: ${{ matrix.os == 'windows-latest' }}
strategy:
fail-fast: false
matrix:
os:
- ubuntu-latest
- macos-latest
- windows-latest
node-version:
- 16
include:
- node-version: 18
os: ubuntu-latest
name: Node ${{ matrix.node-version }} on ${{ matrix.os }}
steps:
- uses: actions/checkout@v3
with:
submodules: 'recursive'
- uses: pnpm/[email protected]
with:
version: 8
- uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
# cache: 'pnpm'
- run: pnpm install
- run: pnpm test