Skip to content

fix: RangeError: Maximum call stack size exceeded in Socket.IO serial… #431

fix: RangeError: Maximum call stack size exceeded in Socket.IO serial…

fix: RangeError: Maximum call stack size exceeded in Socket.IO serial… #431

Workflow file for this run

# This to verify lib version bump doesn't break anything
name: E2E Tests
on:
push:
branches:
- master
- main
pull_request:
branches:
- '**'
jobs:
publish-npm:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: 20
registry-url: https://registry.npmjs.org/
- run: git config --global user.name "GitHub CD bot"
- run: git config --global user.email "[email protected]"
- name: Install deps
run: export NODE_OPTIONS=--openssl-legacy-provider && npm i -g wait-for-localhost-cli && PUPPETEER_SKIP_DOWNLOAD=true npm i -f
- name: Run unit tests
run: npm test
- name: Build frontend
run: export NODE_OPTIONS=--openssl-legacy-provider && npm run build
- name: Start app and run tests
run: export NODE_OPTIONS=--openssl-legacy-provider && npm run backend & wait-for-localhost 3333; cd test/e2e; npm i && PLAYWRIGHT_SKIP_BROWSER_DOWNLOAD=1 npx playwright install-deps chromium && npm run test
env:
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}