Skip to content

Commit f8bdac3

Browse files
authored
ci(benchmark): remove eol node 12 from test matrix, add node 18 (#503)
1 parent d14112b commit f8bdac3

File tree

1 file changed

+12
-12
lines changed

1 file changed

+12
-12
lines changed

.github/workflows/benchmark.yml

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -11,15 +11,15 @@ jobs:
1111
permissions:
1212
contents: read
1313
outputs:
14-
PR-BENCH-12: ${{ steps.benchmark-pr.outputs.BENCH_RESULT12 }}
1514
PR-BENCH-14: ${{ steps.benchmark-pr.outputs.BENCH_RESULT14 }}
1615
PR-BENCH-16: ${{ steps.benchmark-pr.outputs.BENCH_RESULT16 }}
17-
MAIN-BENCH-12: ${{ steps.benchmark-main.outputs.BENCH_RESULT12 }}
16+
PR-BENCH-18: ${{ steps.benchmark-pr.outputs.BENCH_RESULT18 }}
1817
MAIN-BENCH-14: ${{ steps.benchmark-main.outputs.BENCH_RESULT14 }}
1918
MAIN-BENCH-16: ${{ steps.benchmark-main.outputs.BENCH_RESULT16 }}
19+
MAIN-BENCH-18: ${{ steps.benchmark-main.outputs.BENCH_RESULT18 }}
2020
strategy:
2121
matrix:
22-
node-version: [12, 14, 16]
22+
node-version: [14, 16, 18]
2323
steps:
2424
- uses: actions/checkout@v3
2525
with:
@@ -75,38 +75,38 @@ jobs:
7575
with:
7676
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
7777
message: |
78-
**Node**: 12
78+
**Node**: 14
7979
**PR**:
8080
```
81-
${{ needs.benchmark.outputs.PR-BENCH-12 }}
81+
${{ needs.benchmark.outputs.PR-BENCH-14 }}
8282
```
8383
**MAIN**:
8484
```
85-
${{ needs.benchmark.outputs.MAIN-BENCH-12 }}
85+
${{ needs.benchmark.outputs.MAIN-BENCH-14 }}
8686
```
8787
8888
---
8989
90-
**Node**: 14
90+
**Node**: 16
9191
**PR**:
9292
```
93-
${{ needs.benchmark.outputs.PR-BENCH-14 }}
93+
${{ needs.benchmark.outputs.PR-BENCH-16 }}
9494
```
9595
**MAIN**:
9696
```
97-
${{ needs.benchmark.outputs.MAIN-BENCH-14 }}
97+
${{ needs.benchmark.outputs.MAIN-BENCH-16 }}
9898
```
9999
100100
---
101101
102-
**Node**: 16
102+
**Node**: 18
103103
**PR**:
104104
```
105-
${{ needs.benchmark.outputs.PR-BENCH-16 }}
105+
${{ needs.benchmark.outputs.PR-BENCH-18 }}
106106
```
107107
**MAIN**:
108108
```
109-
${{ needs.benchmark.outputs.MAIN-BENCH-16 }}
109+
${{ needs.benchmark.outputs.MAIN-BENCH-18 }}
110110
```
111111
112112
- uses: actions-ecosystem/action-remove-labels@v1

0 commit comments

Comments
 (0)