Skip to content

Commit

Permalink
instrumentation-tracker
Browse files Browse the repository at this point in the history
  • Loading branch information
jsumners-nr committed Mar 20, 2024
1 parent 6fddc8b commit 86cb90f
Show file tree
Hide file tree
Showing 11 changed files with 857 additions and 941 deletions.
14 changes: 7 additions & 7 deletions .github/workflows/ci-workflow.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ jobs:
with:
node-version: ${{ matrix.node-version }}
- name: Install Dependencies
run: npm ci
run: npm ci --verbose
- name: Run Linting
run: npm run lint
- name: Inspect Lockfile
Expand All @@ -58,7 +58,7 @@ jobs:
with:
node-version: ${{ matrix.node-version }}
- name: Install Dependencies
run: npm ci
run: npm ci --verbose
- name: Run CI Script Unit Tests
run: npm run unit:scripts

Expand All @@ -79,7 +79,7 @@ jobs:
with:
node-version: ${{ matrix.node-version }}
- name: Install Dependencies
run: npm ci
run: npm ci --verbose
- name: Run Unit Tests
run: npm run unit
- name: Archive Unit Test Coverage
Expand All @@ -104,7 +104,7 @@ jobs:
with:
node-version: ${{ matrix.node-version }}
- name: Install Dependencies
run: npm ci
run: npm ci --verbose
- name: Run Docker Services
run: npm run services
- name: Run Integration Tests
Expand Down Expand Up @@ -132,7 +132,7 @@ jobs:
with:
node-version: ${{ matrix.node-version }}
- name: Install Dependencies
run: npm ci
run: npm ci --verbose
- name: Run Docker Services
run: npm run services
- name: Run Versioned Tests
Expand Down Expand Up @@ -161,7 +161,7 @@ jobs:
with:
name: logs-${{ matrix.node-version }}.tgz
path: ./logs-${{ matrix.node-version }}.tgz

# There is no coverage for external as that's tracked in their respective repos
versioned-external:
needs: skip_if_release
Expand All @@ -180,7 +180,7 @@ jobs:
with:
node-version: ${{ matrix.node-version }}
- name: Install Dependencies
run: npm ci
run: npm ci --verbose
- name: Run Versioned Tests
run: TEST_CHILD_TIMEOUT=600000 npm run versioned:external
env:
Expand Down
25 changes: 0 additions & 25 deletions jsdoc-conf.json

This file was deleted.

37 changes: 37 additions & 0 deletions jsdoc-conf.jsonc
Original file line number Diff line number Diff line change
@@ -0,0 +1,37 @@
{
"opts": {
"destination": "out/",
"readme": "./README.md",
"template": "./node_modules/clean-jsdoc-theme",
"theme_opts": {
"search": false
},
"tutorials": "examples/shim",
"recurse": true
},
"source": {
"exclude": ["node_modules", "test"],
"includePattern": ".+\\.js(doc)?$",
// Note: we cannot add patterns to the "include" strings. They must be
// explicit strings that point to either specific files or directories.
// Recursion is enabled for the `jsdoc` command, thus any directories
// specified here will be processed recursively. So make sure any files in
// these directories should be included in our public docs.
"include": [
"lib/shim/",
"lib/transaction/handle.js",
"lib/instrumentation-descriptor.js"
]
},
"plugins": [
"plugins/markdown"
],
"templates": {
"cleverLinks": true,
"showInheritedInNav": false
},
"markdown": {
"hardwrap": false,
"idInHeadings": true
}
}
Loading

0 comments on commit 86cb90f

Please sign in to comment.