mirror of
https://github.com/Unleash/unleash.git
synced 2024-10-28 19:06:12 +01:00
340bcf1d1b
Add eslint to CI pipeline
14 lines
138 B
Bash
Executable File
14 lines
138 B
Bash
Executable File
#!/bin/bash
|
|
|
|
set -e
|
|
|
|
yarn
|
|
yarn run lint
|
|
yarn run test
|
|
|
|
cd frontend
|
|
yarn run ts:check
|
|
yarn run lint:check
|
|
yarn run fmt:check
|
|
yarn run test
|