Skip to content

Commit

Permalink
Cleaning up gh actions (#671)
Browse files Browse the repository at this point in the history
  • Loading branch information
IanWoodard authored Oct 9, 2023
1 parent 07e66a8 commit b67efeb
Show file tree
Hide file tree
Showing 3 changed files with 15 additions and 3 deletions.
7 changes: 6 additions & 1 deletion .github/workflows/test-earn.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,4 +19,9 @@ jobs:
cache: 'yarn'
- run: |
yarn global add node-gyp
cd shared && yarn install --frozen-lockfile && yarn build && cd ../earn && yarn install --frozen-lockfile && yarn test
cd shared
yarn install --frozen-lockfile
yarn build
cd ../earn
yarn install --frozen-lockfile
yarn test
7 changes: 6 additions & 1 deletion .github/workflows/test-prime.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,4 +19,9 @@ jobs:
cache: 'yarn'
- run: |
yarn global add node-gyp
cd shared && yarn install --frozen-lockfile && yarn build && cd ../prime && yarn install --frozen-lockfile && yarn test
cd shared
yarn install --frozen-lockfile
yarn build
cd ../prime
yarn install --frozen-lockfile
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 @@ -19,4 +19,6 @@ jobs:
cache: 'yarn'
- run: |
yarn global add node-gyp
cd shared && yarn install --frozen-lockfile && yarn test
cd shared
yarn install --frozen-lockfile
yarn test

0 comments on commit b67efeb

Please sign in to comment.