File tree Expand file tree Collapse file tree 2 files changed +12
-11
lines changed
plugins/node/instrumentation-undici Expand file tree Collapse file tree 2 files changed +12
-11
lines changed Original file line number Diff line number Diff line change @@ -191,14 +191,16 @@ jobs:
191
191
- name : Unit tests (Delta)
192
192
run : npm run test-all-versions:ci:changed
193
193
# TODO: save coverage for later
194
- # - name: Upload Test Artifacts
195
- # uses: actions/upload-artifact@v4
196
- # with:
197
- # name: tests-coverage-cache-${{ github.run_number }}-${{ matrix.node }}
198
- # path: .nx
199
- # include-hidden-files: true
200
- # if-no-files-found: error
201
- # retention-days: 1
194
+ - name : Upload Test Artifacts
195
+ uses : actions/upload-artifact@v4
196
+ with :
197
+ name : tests-coverage-cache-${{ github.run_number }}-${{ matrix.node }}
198
+ include-hidden-files : true
199
+ if-no-files-found : error
200
+ retention-days : 1
201
+ path : |
202
+ **/.nyc_output/**
203
+ **/coverage/**
202
204
# TODO: how to put back everythign in coverage???
203
205
# test-coverage-report:
204
206
# runs-on: ubuntu-latest
Original file line number Diff line number Diff line change 9
9
"prepublishOnly" : " npm run compile" ,
10
10
"setup:dev" : " nx run-many -t compile -p @opentelemetry/instrumentation-undici" ,
11
11
"compile" : " tsc -p ." ,
12
- "test" : " nyc mocha test/**/*.test.ts" ,
12
+ "test" : " nyc --no-clean mocha test/**/*.test.ts" ,
13
13
"test-all-versions" : " tav" ,
14
14
"tdd" : " npm run test -- --watch-extensions ts --watch" ,
15
15
"clean" : " rimraf build/*" ,
16
16
"lint" : " eslint . --ext .ts" ,
17
17
"lint:fix" : " eslint . --ext .ts --fix" ,
18
18
"watch" : " tsc -w" ,
19
- "version:update" : " node ../../../scripts/version-update.js" ,
20
- "echo" : " echo hi"
19
+ "version:update" : " node ../../../scripts/version-update.js"
21
20
},
22
21
"keywords" : [
23
22
" opentelemetry" ,
You can’t perform that action at this time.
0 commit comments