UNPKG

@graphql-inspector/action

Version:

GraphQL Inspector functionality for GitHub Actions

9 lines (8 loc) 180 B
import * as core from '@actions/core'; import { run } from './run.js'; global.navigator = { userAgent: 'node.js', }; run().catch(e => { core.setFailed(e.message || e); });