From c21769d4de4bb0d3695e2a92fa96458ee9492bfe Mon Sep 17 00:00:00 2001 From: Gabor Babicz Date: Wed, 31 May 2023 17:47:27 +0200 Subject: [PATCH] Remove IE11 from targets --- .github/workflows/ci.yml | 2 +- tests/dummy/config/targets.js | 7 ------- 2 files changed, 1 insertion(+), 8 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 22375d20..2ba4feec 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -58,7 +58,7 @@ jobs: try-scenarios: name: ${{ matrix.try-scenario }} runs-on: ubuntu-latest - needs: 'test' + # needs: 'test' strategy: fail-fast: false diff --git a/tests/dummy/config/targets.js b/tests/dummy/config/targets.js index fb7f01b0..9f6cc639 100644 --- a/tests/dummy/config/targets.js +++ b/tests/dummy/config/targets.js @@ -2,13 +2,6 @@ const browsers = ['last 1 Chrome versions', 'last 1 Firefox versions', 'last 1 Safari versions']; -const isCI = Boolean(process.env.CI); -const isProduction = process.env.EMBER_ENV === 'production'; - -if (isCI || isProduction) { - browsers.push('ie 11'); -} - module.exports = { browsers, };