Skip to content

Commit

Permalink
chore: why
Browse files Browse the repository at this point in the history
  • Loading branch information
iowillhoit committed Sep 22, 2023
1 parent a0a4754 commit d859cd6
Showing 1 changed file with 10 additions and 12 deletions.
22 changes: 10 additions & 12 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -43,25 +43,23 @@ jobs:
JIT=$(jq -c '.oclif.jitPlugins | keys' package.json)
echo "Found JIT plugins:"
echo "$JIT"
echo "jit=$JIT" >> "$GITHUB_OUTPUT"
echo "jit='$JIT'" >> "$GITHUB_OUTPUT"
# echo-jit-plugins:
# needs: get-jit-plugins
# runs-on: ubuntu-latest
# steps:
# - uses: actions/checkout@v3
# - run: |
# echo "JIT to JSON:"
# echo ${{ toJson(needs.get-jit-plugins.outputs.jit) }}
# echo "JIT from JSON:"
# echo ${{ fromJSON(needs.get-jit-plugins.outputs.jit) }}
echo-jit-plugins:
needs: get-jit-plugins
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- run: |
echo "JIT from JSON:"
echo ${{ fromJSON(needs.get-jit-plugins.outputs.jit) }}
jit-install:
needs: [manifest, get-jit-plugins]
strategy:
matrix:
os: [ubuntu-latest, windows-latest]
jitPlugins: ["@salesforce/plugin-community","@salesforce/plugin-custom-metadata"]
jitPlugins: echo ${{ fromJSON(needs.get-jit-plugins.outputs.jit) }}
runs-on: ${{matrix.os}}
steps:
- uses: actions/checkout@v3
Expand Down

0 comments on commit d859cd6

Please sign in to comment.