Skip to content
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

fix: CI #39

Closed
wants to merge 4 commits into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .github/workflows/audit-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ on:
jobs:
install:
name: 'Install'
runs-on: linux-2xl
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [18, 20]
Expand All @@ -30,7 +30,7 @@ jobs:

yarn-audit:
name: Audit
runs-on: linux-2xl
runs-on: ubuntu-latest
needs: install
steps:
- name: Checkout
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/base-branch-check.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ on:
jobs:
base_branch_check:
name: Pull request base branch check
runs-on: linux-2xl
runs-on: ubuntu-latest
steps:
- name: Check the pull request base branch
run: |
Expand Down
10 changes: 5 additions & 5 deletions .github/workflows/contract-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ on:
jobs:
test-unit:
name: Test unit
runs-on: linux-2xl
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
with:
Expand Down Expand Up @@ -112,7 +112,7 @@ jobs:
token: ${{ secrets.CODECOV_TOKEN }}
test-4844:
name: 4844 tests
runs-on: linux-2xl
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
with:
Expand Down Expand Up @@ -145,7 +145,7 @@ jobs:
run: yarn test:4844
test-e2e:
name: Test e2e
runs-on: linux-2xl
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
with:
Expand Down Expand Up @@ -175,7 +175,7 @@ jobs:
run: yarn test:e2e
test-e2e-custom-fee-token:
name: Test e2e custom fee token
runs-on: linux-2xl
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
with:
Expand Down Expand Up @@ -206,7 +206,7 @@ jobs:
run: yarn test:e2e
test-e2e-fee-token-6-decimals:
name: Test e2e fee token with 6 decimals
runs-on: linux-2xl
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
with:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/slither.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ on:

jobs:
analyze:
runs-on: linux-2xl
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4

Expand Down
4 changes: 3 additions & 1 deletion test/e2e/orbitChain.ts
Original file line number Diff line number Diff line change
Expand Up @@ -833,7 +833,9 @@ describe('Orbit Chain', () => {
maxDataSize,
nativeToken: nativeTokenAddress,
deployFactoriesToL2,
maxFeePerGasForRetryables,
maxFeePerGasForRetryables,
eigenDARollupManager: "0x0000000000000000000000000000000000000000" // no need to deploy actual rollup manager
// for test flow
}

/// deploy it
Expand Down
Loading