Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 9 additions & 1 deletion .github/actions/build-test-wasm/action.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,15 @@ runs:
wasm-pack build --target nodejs ./crates/${{ inputs.crate }} --out-dir ../../prebuilds/${{ inputs.crate }}
shell: bash
- name: Test WASM
run: node test-wasm.js ${{ inputs.crate }}
# The pipeline crate's tests are top-level node:test suites that need
# --test-force-exit (the wasm exporter keeps the event loop alive after
# a flush); the other wasm crates use plain test/wasm/<crate>/ scripts.
run: |
if [ "${{ inputs.crate }}" = "pipeline" ]; then
node --test --test-force-exit test/pipeline.js
else
node test-wasm.js ${{ inputs.crate }}
fi
shell: bash
- uses: actions/upload-artifact@ea165f8d65b6e75b540449e92b4886f43607fa02 # v4.6.2
with:
Expand Down
53 changes: 53 additions & 0 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,3 +15,56 @@ updates:
gh-actions-packages:
patterns:
- "*"

- package-ecosystem: "npm"
directory: "/"
schedule:
interval: "weekly"
versioning-strategy: "increase"
labels:
- dependabot
- dependencies
- javascript
- semver-patch
groups:
patch-updates:
update-types:
- "patch"
minor-updates:
update-types:
- "minor"

- package-ecosystem: "npm"
directory: "/test/crashtracker"
schedule:
interval: "weekly"
versioning-strategy: "increase"
labels:
- dependabot
- dependencies
- javascript
- semver-patch
groups:
patch-updates:
update-types:
- "patch"
minor-updates:
update-types:
- "minor"

- package-ecosystem: "cargo"
directory: "/"
schedule:
interval: "weekly"
labels:
- dependabot
- dependencies
- rust
- semver-patch
groups:
patch-updates:
update-types:
- "patch"
minor-updates:
update-types:
- "minor"
1 change: 1 addition & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,7 @@ jobs:
crate:
- library_config
- datadog-js-zstd
- pipeline
steps:
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
- name: 'Use composite action'
Expand Down
1 change: 1 addition & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@ jobs:
crate:
- library_config
- datadog-js-zstd
- pipeline
steps:
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
- name: 'Use composite action'
Expand Down
Loading
Loading