mirror of
https://github.com/Unleash/unleash.git
synced 2024-12-22 19:07:54 +01:00
370c76864d
Align with workflow findings from 6.1.3065675117
- needs to find the database8a59ff70b7
- yarn install is done twice, which is not needed
13 lines
133 B
Bash
Executable File
13 lines
133 B
Bash
Executable File
#!/bin/bash
|
|
|
|
set -e
|
|
|
|
yarn run lint
|
|
yarn run test
|
|
|
|
cd frontend
|
|
yarn run ts:check
|
|
yarn run lint:check
|
|
yarn run fmt:check
|
|
yarn run test
|