Prevent Maximum call stack exceeded
by apply args to Math.min
, Math.max
in chunks
#238
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Build Status | |
on: | |
push: | |
pull_request: | |
jobs: | |
build: | |
runs-on: ${{ matrix.os }} | |
strategy: | |
matrix: | |
os: [ubuntu-latest] | |
node-version: [18.x] | |
steps: | |
- uses: actions/checkout@v2 | |
- uses: browser-actions/setup-chrome@latest | |
- name: Use Node.js ${{ matrix.node-version }} | |
uses: actions/setup-node@v3 | |
with: | |
node-version: ${{ matrix.node-version }} | |
cache: 'npm' | |
cache-dependency-path: package-lock.json | |
- name: Install dependencies | |
run: | | |
npm install | |
sudo apt-get install graphviz xvfb | |
- name: Lint | |
run: | | |
make lint | |
- name: Test | |
run: | | |
KARMA_OPTS="--browsers Chrome" xvfb-run --auto-servernum make -e test |