Skip to content

Commit

Permalink
ci: add sf-v2 dimension in e2e test and release test (#687)
Browse files Browse the repository at this point in the history
  • Loading branch information
scolladon authored Sep 6, 2023
1 parent e3df413 commit 25ea2ff
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 4 deletions.
5 changes: 3 additions & 2 deletions .github/workflows/on-main-push.yml
Original file line number Diff line number Diff line change
Expand Up @@ -57,6 +57,7 @@ jobs:
matrix:
os: [macos-latest, windows-latest, ubuntu-latest]
node: [16, 18, 20]
cli: [sfdx-cli, '@salesforce/cli']
runs-on: ${{ matrix.os }}
steps:
- name: Checkout sources
Expand All @@ -70,8 +71,8 @@ jobs:
with:
node-version: ${{ matrix.node }}

- name: Install sfdx-cli
run: npm install -g sfdx-cli
- name: Install cli
run: npm install -g ${{matrix.cli}}

- name: Install new plugin version
run: echo y | sfdx plugins:install sfdx-git-delta@${{ needs.prepare-release.outputs.version }}
Expand Down
5 changes: 3 additions & 2 deletions .github/workflows/on-pull-request.yml
Original file line number Diff line number Diff line change
Expand Up @@ -133,6 +133,7 @@ jobs:
matrix:
os: [macos-latest, windows-latest, ubuntu-latest]
node: [16, 18, 20]
cli: [sfdx-cli, '@salesforce/cli']
runs-on: ${{ matrix.os }}
steps:
- name: Checkout sources
Expand All @@ -159,8 +160,8 @@ jobs:
- name: Build plugin
run: yarn pack

- name: Install sfdx-cli
run: npm install -g sfdx-cli
- name: Install cli
run: npm install -g ${{matrix.cli}}

- name: Install plugin
run: |
Expand Down

0 comments on commit 25ea2ff

Please sign in to comment.