mirror of
https://github.com/Redocly/redoc.git
synced 2024-11-23 09:03:44 +03:00
14 lines
230 B
JavaScript
14 lines
230 B
JavaScript
|
#!/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');
|
||
|
}
|