From 26177cf47f4d537de0b77b960e030a2087d3c107 Mon Sep 17 00:00:00 2001 From: Marc Santiago Date: Tue, 9 Jan 2024 11:01:42 -0500 Subject: [PATCH] Actions: Adding JSON validation --- .github/workflows/validate_json.yml | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 .github/workflows/validate_json.yml diff --git a/.github/workflows/validate_json.yml b/.github/workflows/validate_json.yml new file mode 100644 index 0000000..617cd92 --- /dev/null +++ b/.github/workflows/validate_json.yml @@ -0,0 +1,18 @@ +name: Sellers.json validation +on: + push: + branches: + - main + pull_request: + branches: + - main + +jobs: + verify-json-validation: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v3 + with: + path: './' + - run: | + cat sellers.json | jq -e \ No newline at end of file