diff options
Diffstat (limited to '.github/workflows/test-all.yaml')
-rw-r--r-- | .github/workflows/test-all.yaml | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/.github/workflows/test-all.yaml b/.github/workflows/test-all.yaml index fd4e50e..04aa088 100644 --- a/.github/workflows/test-all.yaml +++ b/.github/workflows/test-all.yaml @@ -42,5 +42,8 @@ jobs: steps: - uses: actions/checkout@v2 + - name: "Install latest devcontainer CLI" + run: npm install -g @devcontainers/cli + - name: " Testing '${{ matrix.features }}' against '${{ matrix.baseImage }}'" - run: npx --yes ./devcontainers-cli-0.7.0-jospicer01.tgz features test -f ${{ matrix.features }} -i ${{ matrix.baseImage }} -c `pwd` + run: devcontainer features test -f ${{ matrix.features }} -i ${{ matrix.baseImage }} -c `pwd` |