Skip to content

Commit

Permalink
Update job for different syntax
Browse files Browse the repository at this point in the history
  • Loading branch information
Mark-H committed Feb 27, 2021
1 parent 69e00d2 commit 4d004b3
Showing 1 changed file with 9 additions and 9 deletions.
18 changes: 9 additions & 9 deletions .github/workflows/validate.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,17 +3,17 @@ name: Validate
on: [push, pull_request]

jobs:
verify-json:
validate-json:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Validate language file
uses: OrRosenblatt/validate-json-action@0.1.0
with:
schema: ./lang.schema.json
json: ./lang.json
uses: docker://orrosenblatt/validate-json-action:latest
env:
INPUT_SCHEMA: ./lang.schema.json
INPUT_JSONS: ./lang.json
- name: Validate sources file
uses: OrRosenblatt/validate-json-action@0.1.0
with:
schema: ./sources.schema.json
json: ./sources.json
uses: docker://orrosenblatt/validate-json-action:latest
env:
INPUT_SCHEMA: ./sources.schema.json
INPUT_JSONS: ./sources.json

0 comments on commit 4d004b3

Please sign in to comment.