lending: fixing CI test (#2013)

* lending: use yarn instead of npm to build
This commit is contained in:
Jordan Sexton 2021-07-01 21:46:05 -05:00 committed by GitHub
parent ba0c0e007f
commit b763572c4f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 5 additions and 3 deletions

View File

@ -4,8 +4,10 @@ set -e
cd "$(dirname "$0")/.."
source ./ci/solana-version.sh install
npm install --global yarn
set -x
cd token-lending/js
npm install
npm run lint
npm run build
yarn install --pure-lockfile
yarn run lint
yarn run build