From d859cd6d9c91f63493a63ef422aea7f30286788f Mon Sep 17 00:00:00 2001 From: Eric Willhoit Date: Fri, 22 Sep 2023 14:58:15 -0500 Subject: [PATCH] chore: why --- .github/workflows/test.yml | 22 ++++++++++------------ 1 file changed, 10 insertions(+), 12 deletions(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 782795a0..403a4e8d 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -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