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