7 lines
88 B
Bash
7 lines
88 B
Bash
#!/bin/bash
|
|
if [ -z "$SAUCE_ACCESS_KEY" ]; then
|
|
npm test
|
|
else
|
|
grunt ci --verbose
|
|
fi
|