Skip to content

Commit

Permalink
Update -all.yaml
Browse files Browse the repository at this point in the history
  • Loading branch information
samss084 authored Jan 9, 2025
1 parent 8e8e14f commit aaafefc
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions .github/workflows/test-all.yaml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: "CI - Test Features"
name: "CI - Features"
on:
push:
branches:
Expand All @@ -8,7 +8,7 @@ on:
jobs:
test:
runs-on: ubuntu-latest
continue-on-error: true
continue-on-error: false
strategy:
matrix:
features: [
Expand Down Expand Up @@ -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: [
Expand Down Expand Up @@ -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 .

0 comments on commit aaafefc

Please sign in to comment.