Co-authored-by: Ernesto García <ernestognw@gmail.com> Co-authored-by: cairo <cairoeth@protonmail.com>
9 lines
124 B
Bash
Executable File
9 lines
124 B
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
set -euo pipefail
|
|
|
|
if [ "${CI:-"false"}" != "true" ]; then
|
|
npm run test:generation
|
|
npm run lint
|
|
fi
|