We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 50047b6 commit 882d1caCopy full SHA for 882d1ca
1 file changed
.github/workflows/schema-tests.yaml
@@ -7,12 +7,12 @@ name: schema-test
7
# This workflow
8
# - converts the YAML metaschemas to JSON
9
# - runs the npm test script to validate passing and failing testcases for the metaschemas
10
-# - checks in changed JSON files
11
#
12
13
# run this on push to any branch and creation of pull-requests
14
on:
15
push: {}
+ pull_request: {}
16
workflow_dispatch: {}
17
18
jobs:
@@ -39,14 +39,3 @@ jobs:
39
40
- name: Run tests
41
run: npm run test
42
-
43
- - name: Check in changed JSON files
44
- run: |
45
- git config user.name ${GITHUB_ACTOR}
46
- git config user.email ${PUSHER_EMAIL}
47
- git add schemas/**/*.json
48
- git diff-index --quiet HEAD schemas/**/*.json || git commit -m "converted JSON metaschemas"
49
- git push
50
- env:
51
- CI: true
52
- PUSHER_EMAIL: ${{ github.event.pusher.email }}
0 commit comments