Skip to content
This repository was archived by the owner on Mar 11, 2025. It is now read-only.

Commit b763572

Browse files
authored
lending: fixing CI test (#2013)
* lending: use yarn instead of npm to build
1 parent ba0c0e0 commit b763572

File tree

1 file changed

+5
-3
lines changed

1 file changed

+5
-3
lines changed

ci/js-test-token-lending.sh

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,10 @@ set -e
44
cd "$(dirname "$0")/.."
55
source ./ci/solana-version.sh install
66

7+
npm install --global yarn
8+
79
set -x
810
cd token-lending/js
9-
npm install
10-
npm run lint
11-
npm run build
11+
yarn install --pure-lockfile
12+
yarn run lint
13+
yarn run build

0 commit comments

Comments
 (0)