diff options
Diffstat (limited to '.github/workflows/test-scenarios.yaml')
-rw-r--r-- | .github/workflows/test-scenarios.yaml | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/.github/workflows/test-scenarios.yaml b/.github/workflows/test-scenarios.yaml index 61e3026..91fbf50 100644 --- a/.github/workflows/test-scenarios.yaml +++ b/.github/workflows/test-scenarios.yaml @@ -12,5 +12,9 @@ jobs: if: "!contains(github.event.head_commit.message, 'no-ci') && !contains(github.event.head_commit.message, 'CI ignore')" steps: - uses: actions/checkout@v2 - - name: " Running predefined test scenarios" - run: npx --yes ./devcontainers-cli-0.7.0-jospicer01.tgz features test --scenarios `pwd`/test-scenarios -c `pwd` + + - name: "Install latest devcontainer CLI" + run: npm install -g @devcontainers/cli + + - name: "Running predefined test scenarios" + run: devcontainer features test --scenarios `pwd`/test-scenarios -c `pwd` |