Skip to content
This repository has been archived by the owner on May 24, 2024. It is now read-only.

Commit

Permalink
Temporarily disable wdio tests (#2037)
Browse files Browse the repository at this point in the history
  • Loading branch information
sdadn authored Feb 16, 2024
1 parent ec1670e commit e119ea3
Showing 1 changed file with 1 addition and 33 deletions.
34 changes: 1 addition & 33 deletions .github/workflows/ci-cd.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit e119ea3

Please sign in to comment.