Skip to content

Commit 345f1e2

Browse files
committed
trying perf workflow
1 parent c070bda commit 345f1e2

File tree

1 file changed

+22
-13
lines changed

1 file changed

+22
-13
lines changed

.github/workflows/test-main.yml

Lines changed: 22 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -2,21 +2,30 @@ name: test-main
22
run-name: test-main
33
on: [push]
44
jobs:
5-
test:
5+
perf:
66
runs-on: ubuntu-latest
7-
strategy:
8-
matrix:
9-
node: [ 14, 16, 18 ]
10-
name: test on node version ${{ matrix.node }}
7+
name: test performance
118
steps:
129
- uses: actions/checkout@v3
1310
- uses: actions/setup-node@v3
14-
with:
15-
node-version: ${{ matrix.node }}
16-
- run: npm ci
17-
- run: npm run clean
18-
- run: npm run lint
11+
- run: npm install
1912
- run: npm run setup
20-
- run: npm run test:tsc
21-
- run: npm run test:js
22-
- run: npm run test:ts
13+
- run: npm run perf
14+
# test:
15+
# runs-on: ubuntu-latest
16+
# strategy:
17+
# matrix:
18+
# node: [ 14, 16, 18 ]
19+
# name: test on node version ${{ matrix.node }}
20+
# steps:
21+
# - uses: actions/checkout@v3
22+
# - uses: actions/setup-node@v3
23+
# with:
24+
# node-version: ${{ matrix.node }}
25+
# - run: npm install
26+
# - run: npm run clean
27+
# - run: npm run lint
28+
# - run: npm run setup
29+
# - run: npm run test:tsc
30+
# - run: npm run test:js
31+
# - run: npm run test:ts

0 commit comments

Comments
 (0)