diff --git a/.github/workflows/test-earn.yml b/.github/workflows/test-earn.yml index 8558407b..1d8216f0 100644 --- a/.github/workflows/test-earn.yml +++ b/.github/workflows/test-earn.yml @@ -16,4 +16,6 @@ jobs: uses: actions/setup-node@v3 with: node-version: '18.x' - - run: cd shared && yarn install && yarn build && cd ../earn && yarn install && yarn test + - run: | + yarn global add node-gyp + cd shared && yarn install && yarn build && cd ../earn && yarn install && yarn test diff --git a/.github/workflows/test-prime.yml b/.github/workflows/test-prime.yml index dc30ad56..e5e4db68 100644 --- a/.github/workflows/test-prime.yml +++ b/.github/workflows/test-prime.yml @@ -16,4 +16,6 @@ jobs: uses: actions/setup-node@v3 with: node-version: '18.x' - - run: cd shared && yarn install && yarn build && cd ../prime && yarn install && yarn test + - run: | + yarn global add node-gyp + cd shared && yarn install && yarn build && cd ../prime && yarn install && yarn test diff --git a/.github/workflows/test-shared.yml b/.github/workflows/test-shared.yml index d956eaf8..a89d13d8 100644 --- a/.github/workflows/test-shared.yml +++ b/.github/workflows/test-shared.yml @@ -16,4 +16,6 @@ jobs: uses: actions/setup-node@v3 with: node-version: '18.x' - - run: cd shared && yarn install && yarn test + - run: | + yarn global add node-gyp + cd shared && yarn install && yarn test