diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 402f582..2efdfd9 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -86,13 +86,13 @@ jobs: with: name: build - name: Run browser tests - if: ${{ matrix.config.xvfb !== true }} + if: ${{ matrix.config.xvfb != true }} run: npm run karma - name: Start Xvfb - if: ${{ matrix.config.xvfb === true }} + if: ${{ matrix.config.xvfb == true }} run: Xvfb :99 & - name: Run browser tests - if: ${{ matrix.config.xvfb === true }} + if: ${{ matrix.config.xvfb == true }} run: DISPLAY=:99 npm run karma - name: Upload screenshots uses: actions/upload-artifact@v2