Skip to content

add missing dependsOn #3

add missing dependsOn

add missing dependsOn #3

Workflow file for this run

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 .