-
Notifications
You must be signed in to change notification settings - Fork 227
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
update: tests and main conflict resolve
- Loading branch information
Showing
297 changed files
with
8,216 additions
and
3,281 deletions.
There are no files selected for viewing
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
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,41 @@ | ||
{ | ||
"separate-pull-requests": true, | ||
"group-pull-request-title-pattern": "chore(${component}): release at branch ${branch}", | ||
"bootstrap-sha": "4d2086931dcebd7e7c21cad9cbd6668c2abbebbf", | ||
"bump-minor-pre-major": true, | ||
"bump-patch-for-minor-pre-major": false, | ||
"packages": { | ||
"packages/hardhat-zksync-deploy": { | ||
"release-type": "node", | ||
"component": "@matterlabs/hardhat-zksync-deploy" | ||
}, | ||
"packages/hardhat-zksync-solc": { | ||
"release-type": "node", | ||
"component": "@matterlabs/hardhat-zksync-solc" | ||
}, | ||
"packages/hardhat-zksync-upgradable": { | ||
"release-type": "node", | ||
"component": "@matterlabs/hardhat-zksync-upgradable" | ||
}, | ||
"packages/hardhat-zksync-vyper": { | ||
"release-type": "node", | ||
"component": "@matterlabs/hardhat-zksync-vyper" | ||
}, | ||
"packages/hardhat-zksync-verify": { | ||
"release-type": "node", | ||
"component": "@matterlabs/hardhat-zksync-verify" | ||
}, | ||
"packages/hardhat-zksync-toolbox": { | ||
"release-type": "node", | ||
"component": "@matterlabs/hardhat-zksync-toolbox" | ||
}, | ||
"packages/hardhat-zksync-node": { | ||
"release-type": "node", | ||
"component": "@matterlabs/hardhat-zksync-node" | ||
}, | ||
"packages/hardhat-zksync-chai-matchers": { | ||
"release-type": "node", | ||
"component": "@matterlabs/hardhat-zksync-chai-matchers" | ||
} | ||
} | ||
} |
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,10 @@ | ||
{ | ||
"packages/hardhat-zksync-deploy": "1.1.2", | ||
"packages/hardhat-zksync-solc": "1.0.6", | ||
"packages/hardhat-zksync-upgradable": "1.2.1", | ||
"packages/hardhat-zksync-vyper": "1.0.5", | ||
"packages/hardhat-zksync-verify": "1.2.2", | ||
"packages/hardhat-zksync-toolbox": "1.2.1", | ||
"packages/hardhat-zksync-node": "1.0.1", | ||
"packages/hardhat-zksync-chai-matchers": "1.2.1" | ||
} |
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,18 @@ | ||
name: Check PR title | ||
on: | ||
pull_request_target: | ||
types: | ||
- opened | ||
- reopened | ||
- edited | ||
- synchronize | ||
|
||
jobs: | ||
lint: | ||
runs-on: ubuntu-latest | ||
permissions: | ||
statuses: write | ||
steps: | ||
- uses: aslafy-z/conventional-pr-title-action@v3 | ||
env: | ||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} |
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 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,27 @@ | ||
name: Publish packages to github | ||
|
||
on: | ||
push: | ||
branches: | ||
- main | ||
- ethers-v5 | ||
workflow_dispatch: | ||
|
||
permissions: | ||
contents: write | ||
pull-requests: write | ||
|
||
jobs: | ||
release-please: | ||
runs-on: ubuntu-latest | ||
outputs: | ||
release_please_output: ${{ toJSON(steps.release.outputs) }} | ||
steps: | ||
- name: Run release-please | ||
id: release | ||
uses: google-github-actions/release-please-action@v4 | ||
with: | ||
token: ${{ secrets.GITHUB_TOKEN }} | ||
config-file: .github/release-please/config.json | ||
manifest-file: .github/release-please/manifest.json | ||
target-branch: ${{ github.ref_name }} |
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,52 @@ | ||
name: Publish packages to npm | ||
|
||
on: | ||
workflow_dispatch: | ||
inputs: | ||
tag: | ||
required: true | ||
type: choice | ||
description: tag to publish | ||
default: latest | ||
options: | ||
- latest | ||
- beta | ||
- alpha | ||
|
||
package: | ||
required: true | ||
type: choice | ||
description: package to publish | ||
default: hardhat-zksync-deploy | ||
options: | ||
- hardhat-zksync-deploy | ||
- hardhat-zksync-solc | ||
- hardhat-zksync-upgradable | ||
- hardhat-zksync-vyper | ||
- hardhat-zksync-verify | ||
- hardhat-zksync-toolbox | ||
- hardhat-zksync-node | ||
- hardhat-zksync-chai-matchers | ||
- hardhat-zksync-ethers | ||
- hardhat-zksync-verify-vyper | ||
|
||
jobs: | ||
publish: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v3 | ||
|
||
- uses: actions/setup-node@v3 | ||
with: | ||
node-version: '16' | ||
registry-url: 'https://registry.npmjs.org' | ||
cache: 'yarn' | ||
|
||
- name: Setup environment | ||
run: yarn && yarn build | ||
|
||
- name: Publish | ||
env: | ||
NODE_AUTH_TOKEN: ${{ secrets.NPMJS_NPM_MATTERLABS_AUTOMATION_TOKEN }} | ||
run: | | ||
npm publish @matterlabs/${{inputs.package}} --tag ${{ inputs.tag }} --workspace=packages/${{inputs.package}} --access=public |
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.