Skip to content

[Beta] Add prefix to Agent (#1117) #942

[Beta] Add prefix to Agent (#1117)

[Beta] Add prefix to Agent (#1117) #942

Workflow file for this run

name: Node.js CI
on:
push:
branches: [ develop, beta ]
pull_request:
branches: [ develop, beta ]
jobs:
build:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest]
node-version: [14.x, 16.x, 18.x]
steps:
- uses: actions/checkout@v2
- run: openssl req -x509 -nodes -newkey rsa -keyout ./test/certs/server-key.pem -out ./test/certs/server-cert.pem -days 1 -subj "/C=CL/ST=RM/L=OpenTelemetryTest/O=Root/OU=Test/CN=ca"
- name: (${{ matrix.os }}) on Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v1
with:
node-version: ${{ matrix.node-version }}
- run: npm run clean
- run: npm ci
- run: npm run build --if-present
- run: npm run lint
- run: npm test