mirror of
https://github.com/Redocly/redoc.git
synced 2024-11-10 19:06:34 +03:00
14 lines
230 B
JavaScript
Executable File
14 lines
230 B
JavaScript
Executable File
#!/usr/bin/env node
|
|
'use strict';
|
|
|
|
require('shelljs/global');
|
|
set('-e');
|
|
|
|
if (process.env.JOB === 'e2e-guru') {
|
|
exec('npm run e2e');
|
|
} else {
|
|
exec('npm run unit');
|
|
console.log('Starting Basic E2E');
|
|
exec('npm run e2e');
|
|
}
|