diff options
author | Josh Spicer <joshspicer@github.com> | 2023-01-04 01:52:56 +0300 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-01-04 01:52:56 +0300 |
commit | 6c76a7b4883a2639cedf805ed786b5b84100841d (patch) | |
tree | aa54fe02a6fd8a9bb88a6b41396326f2db70085e | |
parent | dbf069a5db328e0413300094a0dc37f520000375 (diff) |
Add validate workflow (#369)
* add validate workflow
* make typo to test 3c61c88
* remove unneeded if
* fix typo
* better names
* Update validate-metadata-files.yml
-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" |