Skip to content

Commit

Permalink
ci(benchmark): remove eol node 12 from test matrix, add node 18 (#503)
Browse files Browse the repository at this point in the history
  • Loading branch information
Fdawgs committed Aug 10, 2022
1 parent d14112b commit f8bdac3
Showing 1 changed file with 12 additions and 12 deletions.
24 changes: 12 additions & 12 deletions .github/workflows/benchmark.yml
Expand Up @@ -11,15 +11,15 @@ jobs:
permissions:
contents: read
outputs:
PR-BENCH-12: ${{ steps.benchmark-pr.outputs.BENCH_RESULT12 }}
PR-BENCH-14: ${{ steps.benchmark-pr.outputs.BENCH_RESULT14 }}
PR-BENCH-16: ${{ steps.benchmark-pr.outputs.BENCH_RESULT16 }}
MAIN-BENCH-12: ${{ steps.benchmark-main.outputs.BENCH_RESULT12 }}
PR-BENCH-18: ${{ steps.benchmark-pr.outputs.BENCH_RESULT18 }}
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 }}
strategy:
matrix:
node-version: [12, 14, 16]
node-version: [14, 16, 18]
steps:
- uses: actions/checkout@v3
with:
Expand Down Expand Up @@ -75,38 +75,38 @@ jobs:
with:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
message: |
**Node**: 12
**Node**: 14
**PR**:
```
${{ needs.benchmark.outputs.PR-BENCH-12 }}
${{ needs.benchmark.outputs.PR-BENCH-14 }}
```
**MAIN**:
```
${{ needs.benchmark.outputs.MAIN-BENCH-12 }}
${{ needs.benchmark.outputs.MAIN-BENCH-14 }}
```
---
**Node**: 14
**Node**: 16
**PR**:
```
${{ needs.benchmark.outputs.PR-BENCH-14 }}
${{ needs.benchmark.outputs.PR-BENCH-16 }}
```
**MAIN**:
```
${{ needs.benchmark.outputs.MAIN-BENCH-14 }}
${{ needs.benchmark.outputs.MAIN-BENCH-16 }}
```
---
**Node**: 16
**Node**: 18
**PR**:
```
${{ needs.benchmark.outputs.PR-BENCH-16 }}
${{ needs.benchmark.outputs.PR-BENCH-18 }}
```
**MAIN**:
```
${{ needs.benchmark.outputs.MAIN-BENCH-16 }}
${{ needs.benchmark.outputs.MAIN-BENCH-18 }}
```
- uses: actions-ecosystem/action-remove-labels@v1
Expand Down

0 comments on commit f8bdac3

Please sign in to comment.