Skip to content

Commit

Permalink
Update CI.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
rotu authored Jun 19, 2024
1 parent fb6bdac commit 1bd33df
Showing 1 changed file with 4 additions and 5 deletions.
9 changes: 4 additions & 5 deletions .github/workflows/CI.yml
Original file line number Diff line number Diff line change
Expand Up @@ -175,8 +175,6 @@ jobs:
xvfb-run --auto-servernum pnpm run test.electron.main
continue-on-error: true
smoke-test:
env:
DEBUG: '*'
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
Expand All @@ -198,18 +196,19 @@ jobs:

- if: ${{ matrix.pm == 'npm' }}
run: |
npm install ${{ github.workspace }}/repo
npm install ${{ github.workspace }}/repo --loglevel verbose --foreground-scripts
- if: ${{ matrix.pm == 'pnpm' }}
run: |
npm install -g pnpm
pnpm add ${{ github.workspace }}/repo
pnpm add ${{ github.workspace }}/repo --loglevel verbose
- if: ${{ matrix.pm == 'yarn' }}
run: |
npm install -g yarn
yarn set version stable
yarn install
yarn add ${{ github.workspace }}/repo
yarn config set logFilters --json '[{"pattern": "*", "level": "info"}]'
yarn add ${{ github.workspace }}/repo --loglevel verbose --foreground-scripts
env:
YARN_ENABLE_IMMUTABLE_INSTALLS: false

0 comments on commit 1bd33df

Please sign in to comment.