File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 1+ name : Node.js 16 CI
2+
3+ on :
4+ push :
5+ branches : [ master ]
6+ pull_request :
7+ branches : [ master ]
8+
9+ jobs :
10+ build :
11+
12+ runs-on : ubuntu-latest
13+
14+ steps :
15+ - uses : actions/checkout@v4
16+ - name : Use Node.js
17+ uses : actions/setup-node@v4
18+ with :
19+ node-version : ' 16.x'
20+ - run : npm install
21+ - run : npm run prepublishOnly
22+ - run : node -v
23+ - run : npm run test-node16
Original file line number Diff line number Diff line change 3838 "test-tsc:esm" : " cd test/fixtures/ts-esm && rm -rf node_modules && npm link ../../.. && npm run build" ,
3939 "test" : " npm run lint && vitest run" ,
4040 "test-keepalive" : " cross-env TEST_KEEPALIVE_COUNT=50 vitest run --test-timeout 180000 keep-alive-header.test.ts" ,
41+ "test-node16" : " node examples/httpclient.cjs && node examples/search_github.cjs && node examples/timing.cjs" ,
4142 "cov" : " vitest run --coverage" ,
4243 "ci" : " npm run lint && npm run cov && npm run prepublishOnly && npm pack && attw --pack" ,
4344 "clean" : " rm -rf dist" ,
You can’t perform that action at this time.
0 commit comments