From eef358dc138ace6d297ab7afc5ca8e1d76fbae94 Mon Sep 17 00:00:00 2001 From: Jarek Radosz Date: Sat, 16 Jul 2022 22:55:39 +0200 Subject: [PATCH] DEV: Remove frontend/core-plugins job (#17533) Frontend tests for core plugins already run in frontend/plugins job --- .github/workflows/tests.yml | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index 270ee753d9e..dd5d31ff0e5 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -38,9 +38,6 @@ jobs: target: plugins - build_type: frontend target: core # Handled by core_frontend_tests job (below) - include: - - build_type: frontend - target: core-plugins steps: - uses: actions/checkout@v3 @@ -154,7 +151,7 @@ jobs: run: bin/rake plugin:spec - name: Plugin QUnit - if: matrix.build_type == 'frontend' && (matrix.target == 'plugins' || matrix.target == 'core-plugins') + if: matrix.build_type == 'frontend' && matrix.target == 'plugins' run: bin/rake plugin:qunit['*','1200000'] timeout-minutes: 30