-
Notifications
You must be signed in to change notification settings - Fork 393
37 lines (30 loc) · 1.25 KB
/
benchmark.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
name: Run Best benchmark
# We could run on every PR, but there is not much need right now.
# By running on every push to master, we get historical Best data for the master branch.
on:
push:
branches: [master]
env:
BEST_FRONTEND_CLIENT_TOKEN: ${{secrets.BEST_FRONTEND_CLIENT_TOKEN}}
BEST_FRONTEND_HOSTNAME: ${{secrets.BEST_FRONTEND_HOSTNAME}}
BEST_HUB_CLIENT_TOKEN: ${{secrets.BEST_HUB_CLIENT_TOKEN}}
BEST_HUB_HOSTNAME: ${{secrets.BEST_HUB_HOSTNAME}}
PUPPETEER_SKIP_DOWNLOAD: 'true' # only needed for @best/runner-local, unused here
jobs:
run-best-performance-tests:
# It is important to use this image so that we have a consistent IP address that can be allowlisted by Best infra
runs-on: salesforce-Ubuntu
steps:
- name: Checkout repository
uses: actions/checkout@v3
- name: Setup Node
uses: actions/setup-node@v3
with:
node-version: '20.12.2'
cache: 'yarn'
- name: Install dependencies
run: yarn install --frozen-lockfile
- name: Build benchmarks
run: yarn build:performance
- name: Run benchmarks
run: yarn test:performance:best:ci