Skip to content

Commit

Permalink
test: install plugin and run nut in same step
Browse files Browse the repository at this point in the history
  • Loading branch information
mcarvin8 authored Oct 8, 2024
1 parent bfb5b31 commit df695f6
Showing 1 changed file with 5 additions and 6 deletions.
11 changes: 5 additions & 6 deletions .github/workflows/nut.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,11 +30,10 @@ jobs:
- name: Install salesforce CLI
run: npm install -g @salesforce/cli

- name: Install plugin
run: echo y | sf plugins install apex-code-coverage-transformer@latest

- name: Yarn install
run: bash -c "yarn"
run: yarn

- name: Run NUT
run: bash -c "${{ inputs.command }}"
- name: Install plugin and Run NUT
run: |
echo y | sf plugins install apex-code-coverage-transformer@latest
bash -c "${{ inputs.command }}"

0 comments on commit df695f6

Please sign in to comment.