diff --git a/.github/workflows/ci-cd.yml b/.github/workflows/ci-cd.yml index 92a063f38f0..2d4a7e2c738 100644 --- a/.github/workflows/ci-cd.yml +++ b/.github/workflows/ci-cd.yml @@ -51,42 +51,10 @@ jobs: # https://github.com/danger/danger-js/issues/557#issuecomment-664851950 DANGER_DISABLE_TRANSPILATION: true - wdio: - runs-on: ubuntu-latest - - strategy: - fail-fast: true - matrix: - form-factor: [tiny, small, medium, large, huge, enormous] - theme: [default, lowlight, fusion] - - steps: - - name: Checkout Project - uses: actions/checkout@v3 - - name: Setup Project - uses: ./.github/actions/setup - - name: Compile Project Default - run: | - npm run compile:default -- --output-path build/default - if: matrix.theme == 'default' - - name: Compile Project Lowlight - run: | - npm run compile:lowlight -- --output-path build/lowlight - if: matrix.theme == 'lowlight' - - name: Compile Project Fusion - run: | - npm run compile:fusion -- --output-path build/fusion - if: matrix.theme == 'fusion' - - name: Run WDIO Tests for form factor ${{ matrix.form-factor }} and ${{ matrix.theme }} - env: - SITE: build/${{ matrix.theme }} - FORM_FACTOR: ${{ matrix.form-factor }} - run: npm run wdio:${{ matrix.theme }} - release-and-deploy: runs-on: ubuntu-latest - needs: [build, wdio] + needs: [build] if: github.ref == 'refs/heads/main' steps: - name: Checkout Project