mirror of
https://github.com/Redocly/redoc.git
synced 2025-02-14 17:00:33 +03:00
7 lines
75 B
Bash
7 lines
75 B
Bash
|
#!/bin/bash
|
||
|
if [ $JOB = "e2e" ]; then
|
||
|
npm run e2e
|
||
|
else
|
||
|
npm run unit
|
||
|
fi
|