-
Notifications
You must be signed in to change notification settings - Fork 39
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
15 changed files
with
6,161 additions
and
9,421 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -27,20 +27,15 @@ jobs: | |
git config user.name rollups-contracts-bot | ||
git config user.email [email protected] | ||
- uses: actions/setup-node@v4 | ||
with: | ||
node-version: 18 | ||
|
||
- name: Install Node dependencies | ||
run: yarn install | ||
- uses: ./.github/workflows/setup | ||
|
||
- name: Create release PR or publish packages to npmjs.com | ||
uses: changesets/action@f13b1baaa620fde937751f5d2c3572b9da32af23 | ||
id: changeset | ||
with: | ||
setupGitUser: false | ||
commit: "chore: version packages" | ||
publish: yarn changeset publish | ||
publish: pnpm changeset publish | ||
env: | ||
GITHUB_TOKEN: ${{ secrets.BOT_TOKEN }} | ||
NPM_TOKEN: ${{ secrets.NPM_TOKEN }} | ||
|
@@ -59,18 +54,11 @@ jobs: | |
with: | ||
submodules: recursive | ||
|
||
- uses: actions/setup-node@v4 | ||
with: | ||
node-version: 18 | ||
|
||
- uses: foundry-rs/foundry-toolchain@v1 | ||
- uses: ./.github/workflows/setup | ||
|
||
- name: Install Python dependencies | ||
run: pip install yq | ||
|
||
- name: Install Node dependencies | ||
run: yarn install | ||
|
||
- name: Generate Rust bindings | ||
run: | | ||
forge bind \ | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
name: Install dependencies | ||
|
||
on: | ||
workflow_call: | ||
|
||
runs: | ||
using: 'composite' | ||
steps: | ||
- uses: pnpm/action-setup@v3 | ||
with: | ||
version: 8 | ||
|
||
- uses: actions/setup-node@v4 | ||
with: | ||
node-version: 18 | ||
cache: 'pnpm' | ||
|
||
- name: Install Node packages | ||
shell: bash | ||
run: pnpm i | ||
|
||
- uses: foundry-rs/foundry-toolchain@v1 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -25,6 +25,7 @@ | |
"proofs:update": "./test/foundry/dapp/helper/update-proofs.sh", | ||
"proofs:setup": "./test/foundry/dapp/helper/update-proofs.sh --setup", | ||
"proofs:clean": "rimraf ./test/foundry/dapp/helper/input/*.json ./test/foundry/dapp/helper/output/*.json", | ||
"preinstall": "npx only-allow pnpm", | ||
"prepack": "run-s build tsc:prod copy-dts", | ||
"start": "hardhat node", | ||
"test": "forge test -vvv", | ||
|
@@ -79,6 +80,5 @@ | |
], | ||
"main": "./dist/src/types/index.js", | ||
"types": "./dist/src/types/index.d.ts", | ||
"license": "Apache-2.0", | ||
"packageManager": "[email protected]" | ||
"license": "Apache-2.0" | ||
} |
Oops, something went wrong.