diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 4e03e2b3..c0218a00 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -42,9 +42,12 @@ jobs: matrix: os: [ubuntu-latest, windows-latest] test: ['test:integration:install', 'test:integration:link'] + lite: [true, false] exclude: - os: windows-latest test: test:integration:link + - lite: true + test: test:integration:link runs-on: ${{matrix.os}} steps: - uses: actions/checkout@v4 @@ -53,5 +56,11 @@ jobs: node-version: latest - uses: salesforcecli/github-workflows/.github/actions/yarnInstallWithRetries@main - run: yarn build + - name: Remove package managers + if: ${{matrix.lite}} + run: | + yarn remove yarn npm - name: Run tests run: yarn ${{matrix.test}} + env: + DEBUG: '@oclif/plugin-plugins*'