From aaafefc224556628687672be22feb577eec7d2ef Mon Sep 17 00:00:00 2001 From: samss084 <131480264+samss084@users.noreply.github.com> Date: Wed, 8 Jan 2025 19:02:44 -0700 Subject: [PATCH] Update -all.yaml --- .github/workflows/test-all.yaml | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/.github/workflows/test-all.yaml b/.github/workflows/test-all.yaml index 7e4c343bd..1b22b0054 100644 --- a/.github/workflows/test-all.yaml +++ b/.github/workflows/test-all.yaml @@ -1,4 +1,4 @@ -name: "CI - Test Features" +name: "CI - Features" on: push: branches: @@ -8,7 +8,7 @@ on: jobs: test: runs-on: ubuntu-latest - continue-on-error: true + continue-on-error: false strategy: matrix: features: [ @@ -57,11 +57,11 @@ jobs: run: npm install -g @devcontainers/cli - name: "Generating tests for '${{ matrix.features }}' against '${{ matrix.baseImage }}'" - run: devcontainer features test --skip-scenarios -f ${{ matrix.features }} -i ${{ matrix.baseImage }} . + run: devcontainer features test scenarios ${{ matrix.features }} -i ${{ matrix.baseImage }} . test-scenarios: runs-on: ubuntu-latest - continue-on-error: true + continue-on-error: false strategy: matrix: features: [ @@ -100,16 +100,16 @@ jobs: run: npm install -g @devcontainers/cli - name: "Testing '${{ matrix.features }}' scenarios" - run: devcontainer features test -f ${{ matrix.features }} --skip-autogenerated . + run: devcontainer features ${{ matrix.features }} autogenerated . test-global: runs-on: ubuntu-latest - continue-on-error: true + continue-on-error: false steps: - uses: actions/checkout@v4 - name: "Install latest devcontainer CLI" run: npm install -g @devcontainers/cli - - name: "Testing global scenarios" - run: devcontainer features test --global-scenarios-only . + - name: " global scenarios" + run: devcontainer features --global-scenarios-only .