Skip to content

Bump the apollo group with 2 updates #8303

Bump the apollo group with 2 updates

Bump the apollo group with 2 updates #8303

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@de0fac2e4500dabe0009e67214ff5f5447ce83dd # 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}}