Skip to content

Instantly share code, notes, and snippets.

@kamilkisiela
Created January 14, 2019 14:40
Show Gist options
  • Save kamilkisiela/ba10e6a7c28a9f0c10663446e607de64 to your computer and use it in GitHub Desktop.
Save kamilkisiela/ba10e6a7c28a9f0c10663446e607de64 to your computer and use it in GitHub Desktop.
GraphQL Inspector as Github Action
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