From 2a9ab7108f1a9419d547f679483e5ed5f6721419 Mon Sep 17 00:00:00 2001 From: Jordan Harband Date: Tue, 13 Jul 2021 15:57:10 -0700 Subject: [PATCH] [Tests] delete `src/util/getComputedRole-test.js` test in node 6 Due to `import type` syntax not working --- .github/workflows/node-4+.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/workflows/node-4+.yml b/.github/workflows/node-4+.yml index 42f249baa..493f6d955 100644 --- a/.github/workflows/node-4+.yml +++ b/.github/workflows/node-4+.yml @@ -74,6 +74,8 @@ jobs: after_install: npm uninstall --no-save eslint-config-airbnb-base && NPM_CONFIG_LEGACY_PEER_DEPS=true npm install --no-save "eslint@${{ matrix.eslint }}" node-version: ${{ matrix.node-version }} skip-ls-check: true + - run: rm __tests__/src/util/getComputedRole-test.js + if: ${{ matrix.node-version < 7 }} - run: npm run test:ci - run: bash <(curl -s https://codecov.io/bash) -f coverage/*.json;