diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 153575366c..380fa3916d 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -69,20 +69,16 @@ jobs: minikube-version: latest if: ${{ runner.os == 'Linux' && matrix.type == 'smoke' }} - - run: xvfb-run --auto-servernum --server-args='-screen 0, 1600x900x24' yarn run test:integration -- -- $ELECTRON_BUILDER_EXTRA_ARGS + - run: xvfb-run --auto-servernum --server-args='-screen 0, 1600x900x24' yarn run test:integration name: Run Linux integration tests if: ${{ runner.os == 'Linux' && matrix.type == 'smoke' }} - - run: yarn run test:integration -- -- $ELECTRON_BUILDER_EXTRA_ARGS + - run: yarn run test:integration name: Run macOS integration tests shell: bash - env: - ELECTRON_BUILDER_EXTRA_ARGS: "--x64 --arm64" if: ${{ runner.os == 'macOS' && matrix.type == 'smoke' }} - - run: yarn run test:integration -- -- $ELECTRON_BUILDER_EXTRA_ARGS + - run: yarn run test:integration name: Run Windows integration tests shell: bash - env: - ELECTRON_BUILDER_EXTRA_ARGS: "--x64 --ia32" if: ${{ runner.os == 'Windows' && matrix.type == 'smoke' }}