From 71d71d687d84ee8a15ece28209d6e2bb6ee9cc0c Mon Sep 17 00:00:00 2001 From: Ian Woodard <17186604+IanWoodard@users.noreply.github.com> Date: Sat, 7 Oct 2023 11:31:22 -0700 Subject: [PATCH] Attempting to fix gh actions (#662) --- .github/workflows/test-earn.yml | 4 +++- .github/workflows/test-prime.yml | 4 +++- .github/workflows/test-shared.yml | 4 +++- 3 files changed, 9 insertions(+), 3 deletions(-) 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