Skip to content

fix: "Maximum call stack size exceeded" when flipping comparisons #201

fix: "Maximum call stack size exceeded" when flipping comparisons

fix: "Maximum call stack size exceeded" when flipping comparisons #201

Workflow file for this run

name: CI
on:
push:
branches: [master]
pull_request:
jobs:
build:
name: Build and Test
strategy:
matrix:
os: [ubuntu-latest, windows-latest]
runs-on: ${{ matrix.os }}
env:
TURBO_TOKEN: ${{ secrets.TURBO_TOKEN }}
TURBO_TEAM: ${{ vars.TURBO_TEAM }}
steps:
- uses: actions/checkout@v3
- uses: pnpm/action-setup@v2
- uses: actions/setup-node@v3
with:
node-version: "20.x"
cache: "pnpm"
- name: Install dependencies
run: pnpm install
- name: Lint
run: pnpm lint
- name: Test
run: pnpm test