Skip to content

Commit

Permalink
test11
Browse files Browse the repository at this point in the history
  • Loading branch information
zapaz committed May 17, 2024
1 parent 43cf478 commit cdb1706
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 11 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/deploy-wp-plugin.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ name: DEPLOY wp plugin
on:
push:
branches:
- integ
- none
# tags:
# - "v*"

Expand Down
12 changes: 4 additions & 8 deletions .github/workflows/test-forge.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,12 +15,8 @@ jobs:
- name: Install Foundry
uses: foundry-rs/foundry-toolchain@v1

- name: Print forge location
run: which forge

- name: Print $HOME
run: echo $HOME

- name: Get forge version
run: forge --version
- run: echo $HOME
- run: which foundryup
- run: which forge
- run: forge --version

4 changes: 2 additions & 2 deletions contracts/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -38,8 +38,8 @@
"validate:only": "pnpm deploy:all --sender $SENDER",
"format": "pnpm format:solidity",
"format:solidity": "$HOME/.foundry/bin/forge fmt",
"foundryup:install": "command -v foundryup >/dev/null 2>&1 || curl -L https://foundry.paradigm.xyz | bash",
"forge:install": "command -v forge >/dev/null 2>&1 || $HOME/.foundry/bin/foundryup",
"foundryup:install": "command -v foundryup >/dev/null 2>&1 || (curl -L https://foundry.paradigm.xyz | bash && command -v foundryup)",
"forge:install": "command -v forge >/dev/null 2>&1 || ($HOME/.foundry/bin/foundryup && command -v forge)",
"forge:update": "git submodule update --recursive",
"tests": "pnpm tests:forge",
"tests:forge": "forge test"
Expand Down

0 comments on commit cdb1706

Please sign in to comment.