Skip to content

Commit

Permalink
Add json style check workflow (#33415)
Browse files Browse the repository at this point in the history
  • Loading branch information
kevingranade authored Aug 21, 2019
1 parent 5478321 commit 433a419
Showing 1 changed file with 25 additions and 0 deletions.
25 changes: 25 additions & 0 deletions .github/workflows/json.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
name: JSON Validation

on:
push:
branches:
- master
paths:
- "*.json"
pull_request:
branches:
- master
paths:
- "*.json"

jobs:
build:

runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v1
with:
fetch-depth: 10
- name: JSON style check
run: make style-json

0 comments on commit 433a419

Please sign in to comment.