diff options
-rw-r--r-- | .github/workflows/validate-metadata-files.yml | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/.github/workflows/validate-metadata-files.yml b/.github/workflows/validate-metadata-files.yml new file mode 100644 index 0000000..dbba8e2 --- /dev/null +++ b/.github/workflows/validate-metadata-files.yml @@ -0,0 +1,16 @@ +name: "Validate devcontainer-feature.json files" +on: + workflow_dispatch: + pull_request: + +jobs: + validate: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v3 + + - name: "Validate devcontainer-feature.json files" + uses: devcontainers/action@v1 + with: + validate-only: "true" + base-path-to-features: "./src" |