mirror of
https://github.com/Redocly/redoc.git
synced 2024-11-11 11:26:37 +03:00
7 lines
77 B
Bash
Executable File
7 lines
77 B
Bash
Executable File
#!/bin/bash
|
|
if [ "$JOB" = "e2e" ]; then
|
|
npm run e2e
|
|
else
|
|
npm run unit
|
|
fi
|