File tree Expand file tree Collapse file tree 1 file changed +22
-13
lines changed Expand file tree Collapse file tree 1 file changed +22
-13
lines changed Original file line number Diff line number Diff line change @@ -2,21 +2,30 @@ name: test-main
22run-name : test-main
33on : [push]
44jobs :
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
You can’t perform that action at this time.
0 commit comments