Summary: Remove redundant files User login fixes Reviewers: #reviewers Subscribers: jenkins-user Differential Revision: https://hub.sealcode.org/D1253
13 lines
240 B
Bash
Executable File
13 lines
240 B
Bash
Executable File
#!/usr/bin/env -S bash -x
|
|
|
|
|
|
# the "--no-TTY" option is crucial - without it the output is not captured in Jenkins
|
|
|
|
docker-compose run \
|
|
--no-TTY \
|
|
--user="$UID" \
|
|
--rm \
|
|
--service-ports \
|
|
test \
|
|
npm "$@"
|