Created
January 14, 2019 14:40
-
-
Save kamilkisiela/ba10e6a7c28a9f0c10663446e607de64 to your computer and use it in GitHub Desktop.
GraphQL Inspector as Github Action
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
workflow "On Push" { | |
on = "push" | |
resolves = "Check GraphQL with Inspector" | |
} | |
workflow "On Pull Request" { | |
on = "pull_request" | |
resolves = "Check GraphQL with Inspector" | |
} | |
# Use GraphQL Inspector Action | |
action "Check GraphQL with Inspector" { | |
uses = "kamilkisiela/graphql-inspector@master" | |
secrets = ["GITHUB_TOKEN"] | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment