mirror of
https://github.com/github/codeql-action.git
synced 2025-12-27 09:40:17 +08:00
13 lines
272 B
JavaScript
13 lines
272 B
JavaScript
'use strict';
|
|
require('./guard-environment.cjs'); // eslint-disable-line import/no-unassigned-import
|
|
|
|
const assert = require('assert');
|
|
|
|
const {flags, refs} = require('./state.cjs');
|
|
|
|
assert(refs.runnerChain);
|
|
|
|
flags.loadedMain = true;
|
|
|
|
module.exports = refs.runnerChain;
|