Skip to content

Commit

Permalink
Attempting to fix gh actions (#662)
Browse files Browse the repository at this point in the history
  • Loading branch information
IanWoodard authored Oct 7, 2023
1 parent f8043db commit 71d71d6
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 3 deletions.
4 changes: 3 additions & 1 deletion .github/workflows/test-earn.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
4 changes: 3 additions & 1 deletion .github/workflows/test-prime.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
4 changes: 3 additions & 1 deletion .github/workflows/test-shared.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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

0 comments on commit 71d71d6

Please sign in to comment.