Skip to content

Upcoming Release Changes #7026

Upcoming Release Changes

Upcoming Release Changes #7026

Workflow file for this run

name: Bench
on:
push:
branches:
- main
pull_request:
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
env:
NODE_NO_WARNINGS: 1
jobs:
bench:
strategy:
matrix:
e2e_runner: [node, bun]
name: ${{matrix.e2e_runner}}
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v4
- name: Set up env
uses: the-guild-org/shared-config/setup@v1
with:
node-version-file: .node-version
- name: Bench
run: ${{matrix.e2e_runner == 'bun' && './node_modules/.bin/bun' || 'yarn'}} bench
env:
E2E_GATEWAY_RUNNER: ${{matrix.e2e_runner}}