-
Notifications
You must be signed in to change notification settings - Fork 157
Horizon upgrades in preparation for contract PRs #1186
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Merged
Changes from all commits
Commits
Show all changes
32 commits
Select commit
Hold shift + click to select a range
298a65c
Fix typos in packages/data-edge/README.md
MonkeyKing44 8929a28
Update InboxMock.sol
kilavvy e1cfc62
Update L2TokenGatewayMock.sol
kilavvy 6209ea9
Update L1TokenGatewayMock.sol
kilavvy 7e14bb4
Merge pull request #1113 from MonkeyKing44/typos
tmigone 22c47ec
Merge pull request #1117 from kilavvy/main
tmigone 1f8d3e0
fix: fix and upgrade Husky pre-commit and lint checks
RembrandtK 0d8ed38
fix: updating yarn.lock for Husky upgrade
RembrandtK bf7e584
fix: ignore cache directories used in dev container
RembrandtK ea650f2
Merge pull request #1168 from graphprotocol/husky-update
RembrandtK 6690d6b
fix(container): removing unneeded shared network dependency, minor do…
RembrandtK cf6ef25
fix: removing duplicated git signing message
RembrandtK 9b12a5f
fix(README): making note of git repo location design
RembrandtK 06cafbc
fix(container): do not install hardhat, install cloc
RembrandtK 496ac94
feat: script to count Solidity code changes between branches
RembrandtK a27db3b
fix: ignore forge-artifacts
RembrandtK 5df3f77
fix: only install cloc once
RembrandtK bc0ba81
fix: don't install forge-std, will be submodule
RembrandtK 1d9e114
fix: more robust filename handling
RembrandtK bf74dc6
Update scripts/count-changes
RembrandtK d79a1b2
fix: not intended to be part of this branch
RembrandtK ffa854c
fix(lint): dev container whitespace lints
RembrandtK ebebc9f
fix: remove container name, avoid conflicts via automatic generation
RembrandtK d35b6ba
fix(container): reducing amount of caching to avoid cross environment…
RembrandtK 84d3a09
fix(container): do not prompt for corepack download
RembrandtK 03ffaa9
Merge pull request #1173 from graphprotocol/dev-container
RembrandtK cbda0fc
Modernise and cleanup lint configuration and build process (#1177)
RembrandtK bdc6613
Main upgrades in preparation for contract PRs (#1184)
RembrandtK 8fccf0e
feat: merge from main to converge on upgrades and other changes
RembrandtK 66b4626
fix: pnpm build for horizon branch
RembrandtK 6866d00
fix: remove yarn patch, and a duplicate line
RembrandtK 5bd8ab0
chore: re-sign commits for verification
RembrandtK File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
The table of contents is too big for display.
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or 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 hidden or 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,50 @@ | ||
name: Build and Test | ||
|
||
env: | ||
CI: true | ||
STUDIO_API_KEY: ${{ secrets.STUDIO_API_KEY }} | ||
|
||
on: | ||
pull_request: | ||
branches: '*' | ||
workflow_dispatch: | ||
|
||
jobs: | ||
test: | ||
name: Build and Test | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Checkout | ||
uses: actions/checkout@v4 | ||
with: | ||
submodules: recursive | ||
|
||
- name: Set up environment | ||
uses: ./.github/actions/setup | ||
|
||
- name: Build all packages | ||
run: pnpm build | ||
|
||
- name: Test all packages | ||
run: pnpm -r --sequential run test | ||
|
||
- name: Test with coverage | ||
run: pnpm -r --sequential run test:coverage | ||
|
||
- name: Find coverage files | ||
id: coverage_files | ||
run: | | ||
# Find all coverage-final.json files | ||
COVERAGE_FILES=$(find ./packages -name "coverage-final.json" -path "*/reports/coverage/*" | tr '\n' ',' | sed 's/,$//') | ||
echo "files=$COVERAGE_FILES" >> $GITHUB_OUTPUT | ||
echo "Found coverage files: $COVERAGE_FILES" | ||
|
||
- name: Upload coverage reports | ||
if: steps.coverage_files.outputs.files != '' | ||
uses: codecov/codecov-action@v3 | ||
with: | ||
token: ${{ secrets.CODECOV_TOKEN }} | ||
files: ${{ steps.coverage_files.outputs.files }} | ||
flags: unittests | ||
name: graphprotocol-contracts | ||
fail_ci_if_error: true |
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file contains hidden or 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 hidden or 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 hidden or 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 hidden or 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
Oops, something went wrong.
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.