From ea254a2b7d67d8526a6b9c85cfb5d96abfa780b2 Mon Sep 17 00:00:00 2001 From: Josh Spicer Date: Tue, 3 Jan 2023 14:53:21 -0800 Subject: [PATCH] Create validate.yml (#26) --- .github/workflows/validate.yml | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 .github/workflows/validate.yml diff --git a/.github/workflows/validate.yml b/.github/workflows/validate.yml new file mode 100644 index 000000000..5dcc21b76 --- /dev/null +++ b/.github/workflows/validate.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"