From 0539fce8140a45918c47a4ab7fe5d0036626ace4 Mon Sep 17 00:00:00 2001 From: Frazer Smith Date: Mon, 24 Apr 2023 08:50:42 +0100 Subject: [PATCH] ci(benchmarks): add node 20 to test matrix --- .github/workflows/benchmark.yml | 15 ++++++++++++++- 1 file changed, 14 insertions(+), 1 deletion(-) diff --git a/.github/workflows/benchmark.yml b/.github/workflows/benchmark.yml index e8f89e27..7cd24719 100644 --- a/.github/workflows/benchmark.yml +++ b/.github/workflows/benchmark.yml @@ -14,12 +14,14 @@ jobs: PR-BENCH-14: ${{ steps.benchmark-pr.outputs.BENCH_RESULT14 }} PR-BENCH-16: ${{ steps.benchmark-pr.outputs.BENCH_RESULT16 }} PR-BENCH-18: ${{ steps.benchmark-pr.outputs.BENCH_RESULT18 }} + PR-BENCH-20: ${{ steps.benchmark-pr.outputs.BENCH_RESULT20 }} MAIN-BENCH-14: ${{ steps.benchmark-main.outputs.BENCH_RESULT14 }} MAIN-BENCH-16: ${{ steps.benchmark-main.outputs.BENCH_RESULT16 }} MAIN-BENCH-18: ${{ steps.benchmark-main.outputs.BENCH_RESULT18 }} + MAIN-BENCH-20: ${{ steps.benchmark-main.outputs.BENCH_RESULT20 }} strategy: matrix: - node-version: [14, 16, 18] + node-version: [14, 16, 18, 20] steps: - uses: actions/checkout@v3 with: @@ -107,6 +109,17 @@ jobs: **MAIN**: ``` ${{ needs.benchmark.outputs.MAIN-BENCH-18 }} + + --- + + **Node**: 20 + **PR**: + ``` + ${{ needs.benchmark.outputs.PR-BENCH-20 }} + ``` + **MAIN**: + ``` + ${{ needs.benchmark.outputs.MAIN-BENCH-20 }} ``` - uses: actions-ecosystem/action-remove-labels@v1