From 6f3a79846b162672f885e10c340a152f2d50bb6c Mon Sep 17 00:00:00 2001 From: Ry Racherbaumer Date: Thu, 14 Dec 2023 18:05:17 -0600 Subject: [PATCH] ci: disable jsdom test (will re-add later) --- .github/workflows/test.yml | 7 ++----- 1 file changed, 2 insertions(+), 5 deletions(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 7408436a6..1803cec0c 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -8,9 +8,6 @@ jobs: test: name: Test runs-on: ubuntu-latest - strategy: - matrix: - env: ['node', 'jsdom'] steps: - uses: actions/checkout@v2 - uses: actions/setup-node@v3 @@ -18,10 +15,10 @@ jobs: node-version-file: '.nvmrc' - run: npm ci - run: ./dev/docker-compose up -d - - run: npm run test:${{ matrix.env }} + - run: npm run test:node env: NODE_OPTIONS: '-r dd-trace/ci/init' - DD_ENV: ci:${{ matrix.env }} + DD_ENV: ci:node DD_SERVICE: xmtp-js DD_CIVISIBILITY_AGENTLESS_ENABLED: 'true' DD_API_KEY: ${{ secrets.DD_API_KEY }}