8 lines
98 B
Bash
Executable File
8 lines
98 B
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
set -euo pipefail
|
|
|
|
if [ "${CI:-"false"}" != "true" ]; then
|
|
npm run lint
|
|
fi
|