add missing dependsOn #3
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: Test devcontainer features | |
| on: | |
| pull_request: | |
| paths: | |
| - "src/**" | |
| - "test/**" | |
| - ".github/workflows/test.yaml" | |
| push: | |
| branches: | |
| - main | |
| paths: | |
| - "src/**" | |
| - "test/**" | |
| - ".github/workflows/test.yaml" | |
| jobs: | |
| test: | |
| runs-on: ubuntu-latest | |
| strategy: | |
| fail-fast: false | |
| matrix: | |
| feature: | |
| - mise-bootstrap | |
| baseImage: | |
| - mcr.microsoft.com/devcontainers/base:ubuntu | |
| - mcr.microsoft.com/devcontainers/base:debian | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v4 | |
| - name: Install @devcontainers/cli | |
| run: npm install -g @devcontainers/cli | |
| - name: Test ${{ matrix.feature }} on ${{ matrix.baseImage }} | |
| run: | | |
| devcontainer features test \ | |
| --features ${{ matrix.feature }} \ | |
| --base-image ${{ matrix.baseImage }} \ | |
| --project-folder . |