Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit eb146e8

Browse files
committedFeb 24, 2024·
Run benchmarks on CI
1 parent d515a7e commit eb146e8

File tree

1 file changed

+8
-2
lines changed

1 file changed

+8
-2
lines changed
 

‎.github/workflows/test.yml

+8-2
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ jobs:
99
strategy:
1010
matrix:
1111
latest-node-version: [20.x]
12-
node-version: [6.x, 8.x, 10.x, 12.x, 14.x, 16.x, 18.x, 20.x]
12+
node-version: [18.x, 20.x]
1313

1414
steps:
1515
- uses: actions/checkout@v1
@@ -26,6 +26,12 @@ jobs:
2626
uses: actions/setup-node@v1
2727
with:
2828
node-version: ${{ matrix.node-version }}
29-
- name: Test legacy node
29+
- name: Test node
3030
run: |
3131
node dist/gen-mapping.umd.js
32+
- name: Benchmark
33+
run: |
34+
npm run benchmark:install
35+
npm run benchmark:only
36+
env:
37+
CI: true

0 commit comments

Comments
 (0)
Please sign in to comment.