diff --git a/.github/workflows/nodejs.yml b/.github/workflows/nodejs.yml index 9f52296f5848..3a3ee0928f7d 100644 --- a/.github/workflows/nodejs.yml +++ b/.github/workflows/nodejs.yml @@ -210,6 +210,8 @@ jobs: max_attempts: 3 retry_on: error command: yarn jest-coverage --color --config jest.config.ci.mjs --max-workers ${{ steps.cpu-cores.outputs.count }} --shard=${{ matrix.shard }} + env: + NODE_OPTIONS: '--disable-warning=ExperimentalWarning' - name: map coverage run: node ./scripts/mapCoverage.mjs if: always() diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 357b339db68e..e3f8ec0f0ddc 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -42,6 +42,8 @@ jobs: max_attempts: 3 retry_on: error command: yarn test-ci-partial:parallel --max-workers ${{ steps.cpu-cores.outputs.count }} --shard=${{ inputs.shard }} + env: + NODE_OPTIONS: '--disable-warning=ExperimentalWarning' test-jasmine: name: Node LTS using jest-jasmine2