Fix NaN
and Infinity
values in logs being coerced into null
and causing exception in OTEL collector
#12052
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Lint | |
on: | |
push: | |
branches: | |
- main | |
pull_request: | |
merge_group: | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- uses: actions/setup-node@v4 | |
with: | |
cache: 'npm' | |
cache-dependency-path: | | |
package-lock.json | |
node-version: '20' | |
- name: Lint changelog file | |
uses: avto-dev/markdown-lint@v1 | |
with: | |
# Commenting due to | |
# https://github.com/avto-dev/markdown-lint/blob/aab9be9823fcd706f6da3e6ad6c64874c23fbd4c/lint/rules/changelog.js#L51-L71 | |
# TODO: adhere to, or overwrite above rule and uncomment rules | |
# rules: "/lint/rules/changelog.js" | |
config: "/lint/config/changelog.yml" | |
args: "./CHANGELOG.md" | |
- name: Lint markdown files | |
uses: avto-dev/markdown-lint@v1 | |
with: | |
args: "./**/*.md" | |
ignore: './CHANGELOG.md ./experimental/packages/opentelemetry-exporter-metrics-otlp-grpc/protos ./experimental/packages/opentelemetry-exporter-metrics-otlp-proto/protos ./packages/exporter-trace-otlp-grpc/protos ./packages/exporter-trace-otlp-proto/protos' | |
- name: Bootstrap | |
run: npm ci | |
- name: Lint | |
run: | | |
npm run lint | |
npm run lint:examples | |
- name: Lint doc files | |
run: | | |
npm run compile | |
NODE_OPTIONS=--max-old-space-size=6144 npm run docs | |
npm run docs:test |