diff options
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 }} |