Skip to content

Add READMES

Add READMES #2

name: Tests - opentelemetry-mutable-baggage
on:
push:
paths:
- '*'
- 'projects/opentelemetry-mutable-baggage/**'
jobs:
unit:
runs-on: infrastructure-production-toolbox-ubuntu22-4g-2cpu-x64
env:
NPM_WORKSPACE: projects/opentelemetry-mutable-baggage
steps:
- name: Checkout code
uses: actions/checkout@v3
- name: Setup Node.js version
uses: actions/setup-node@v3
with:
node-version: 20
- name: Install dependencies
run: npm ci
- name: Run lint
run: npm run lint --workspace $NPM_WORKSPACE
- name: Run tests
env:
VITEST_MAX_THREADS: 2
VITEST_MIN_THREADS: 1
run: npm run test --workspace $NPM_WORKSPACE