Skip to content

feat(web experiments): Emit web_experiment_applied event and do not render experiments for bots #3441

feat(web experiments): Emit web_experiment_applied event and do not render experiments for bots

feat(web experiments): Emit web_experiment_applied event and do not render experiments for bots #3441

Workflow file for this run

name: Server-side rendering and ES5
on:
- pull_request
jobs:
ssr:
name: Cypress
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: pnpm/action-setup@v4
with:
version: 8.x.x
- uses: actions/setup-node@v4
with:
node-version: '18'
cache: 'pnpm'
- run: pnpm install && pnpm build
- name: Run es-check to check if our bundle is ES5 compatible
run: npx es-check@6.1.1 es5 dist/{array,main}.js
- name: Require module via node
run: cd dist; node -e "require('./main')"