Skip to content

Commit 02a0fbb

Browse files
committed
Adds baseline job
1 parent 4513465 commit 02a0fbb

File tree

1 file changed

+18
-0
lines changed

1 file changed

+18
-0
lines changed

.github/workflows/benchmark.yml

+18
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,24 @@ concurrency:
99
cancel-in-progress: true
1010

1111
jobs:
12+
baseline:
13+
name: Baseline Build
14+
runs-on: ubuntu-latest
15+
steps:
16+
- uses: actions/checkout@v2
17+
18+
# Only setup & build if there was no build cache hit
19+
- name: Use Node.js 16
20+
uses: actions/setup-node@v3
21+
with:
22+
node-version: '16'
23+
24+
- name: Install
25+
run: yarn install --frozen-lockfile --prefer-offline
26+
27+
- name: build
28+
run: yarn build
29+
1230
turbo:
1331
name: Build with Turbo
1432
runs-on: ubuntu-latest

0 commit comments

Comments
 (0)