diff options
author | Josh Spicer <joshspicer@github.com> | 2022-07-18 20:40:36 +0300 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-07-18 20:40:36 +0300 |
commit | 3042260fc17c80f838a837c90cc9b2371bfb6365 (patch) | |
tree | 634e90677e80e755b7e7b3d6d64bdcfcc75c44e6 /.github/workflows/test-manual.yaml | |
parent | b0e2f6ac23afbdef657e4b4973c02ec35a30c7bd (diff) |
remove hardcoded devcontainer-cli (#65)
remove hardcoded devcontainer-cli in favor of fetching latest from npm dynamically
Diffstat (limited to '.github/workflows/test-manual.yaml')
-rw-r--r-- | .github/workflows/test-manual.yaml | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/.github/workflows/test-manual.yaml b/.github/workflows/test-manual.yaml index 4d637d2..eba6d99 100644 --- a/.github/workflows/test-manual.yaml +++ b/.github/workflows/test-manual.yaml @@ -21,5 +21,8 @@ jobs: steps: - uses: actions/checkout@v2 - - name: " Testing '${{ github.event.inputs.features }}' against '${{ github.event.inputs.baseImage }}'" - run: npx --yes ./devcontainers-cli-0.7.0-jospicer01.tgz features test --features ${{ github.event.inputs.features }} --base-image ${{ github.event.inputs.baseImage }} --collection-folder `pwd` --log-level ${{ github.event.inputs.logLevel }} + - name: "Install latest devcontainer CLI" + run: npm install -g @devcontainers/cli + + - name: "Testing '${{ github.event.inputs.features }}' against '${{ github.event.inputs.baseImage }}'" + run: devcontainer features test --features ${{ github.event.inputs.features }} --base-image ${{ github.event.inputs.baseImage }} --collection-folder `pwd` --log-level ${{ github.event.inputs.logLevel }} |