diff --git a/.github/workflows/superset-frontend.yml b/.github/workflows/superset-frontend.yml index a7e20ab82356..5aa32d4e7420 100644 --- a/.github/workflows/superset-frontend.yml +++ b/.github/workflows/superset-frontend.yml @@ -162,26 +162,6 @@ jobs: docker run --rm $TAG bash -c \ "npm i && npm run plugins:build && npm run type" - validate-frontend: - needs: frontend-build - if: needs.frontend-build.outputs.should-run == 'true' - runs-on: ubuntu-26.04 - timeout-minutes: 20 - steps: - - name: Download Docker Image Artifact - uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8 - with: - name: docker-image - - - name: Load Docker Image - run: | - zstd -d < docker-image.tar.zst | docker load - - - name: Build Plugins Packages - run: | - docker run --rm $TAG bash -c \ - "npm run plugins:build" - test-storybook: needs: frontend-build if: needs.frontend-build.outputs.should-run == 'true'