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-all.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-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` |