Skip to content

Commit

Permalink
Deal with Github path
Browse files Browse the repository at this point in the history
  • Loading branch information
miohtama committed Jan 26, 2024
1 parent 47b394d commit 295fc19
Showing 1 changed file with 9 additions and 3 deletions.
12 changes: 9 additions & 3 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,8 +33,14 @@ jobs:
cache: 'npm'
cache-dependency-path: contracts/aave-v3-deploy/package-lock.json
# pnpm needed to compile Enzyme

- name: Install pnpm
run: curl -fsSL https://get.pnpm.io/install.sh | sh -
run: |
curl -fsSL https://get.pnpm.io/install.sh | sh -
PNPM_HOME="/home/runner/.local/share/pnpm"
# https://docs.github.com/en/actions/using-workflows/workflow-commands-for-github-actions#adding-a-system-path
echo $PNPM_HOME >> $GITHUB_PATH
- name: Install poetry
run: pipx install poetry
- name: Set up Python 3.12
Expand Down Expand Up @@ -62,8 +68,8 @@ jobs:
# We also work around race condition for setting up Aave NPM packages.
- name: Build needed contracts
run: |
make guard in-house
pnpm --version
make guard in-house
# Run tests parallel.
- name: Run test scripts
run: |
Expand Down

0 comments on commit 295fc19

Please sign in to comment.