aboutsummaryrefslogtreecommitdiff
path: root/.github/workflows
diff options
context:
space:
mode:
authorJosh Spicer <joshspicer@github.com>2023-01-04 01:52:56 +0300
committerGitHub <noreply@github.com>2023-01-04 01:52:56 +0300
commit6c76a7b4883a2639cedf805ed786b5b84100841d (patch)
treeaa54fe02a6fd8a9bb88a6b41396326f2db70085e /.github/workflows
parentdbf069a5db328e0413300094a0dc37f520000375 (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
Diffstat (limited to '.github/workflows')
-rw-r--r--.github/workflows/validate-metadata-files.yml16
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"