UNPKG

@graphql-inspector/action

Version:

GraphQL Inspector functionality for GitHub Actions

7 lines (6 loc) 150 B
#!/usr/bin/env node import * as core from '@actions/core'; import { run } from './run.js'; run().catch(e => { core.setFailed(e.message || e); });