Skip to content

3.0.1 Release

3.0.1 Release #1638

Workflow file for this run

name: Integration Tests CI
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
jobs:
integration:
runs-on: ubuntu-latest
strategy:
matrix:
# TODO: Enable Node 14.x when we update the pipeline to support AbortController
node-version: [16.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: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v1
with:
node-version: ${{ matrix.node-version }}
- run: npm i
- run: npm run functionaltest