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

experiment: Use OCL testnode action in CI #30

Closed
wants to merge 1 commit into from
Closed
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
18 changes: 9 additions & 9 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: ubuntu-latest
runs-on: linux-2xl
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: ubuntu-latest
runs-on: linux-2xl
steps:
- uses: actions/checkout@v3
with:
Expand All @@ -123,7 +123,7 @@ jobs:
with:
version: nightly

- uses: Layr-Labs/arbitrum-actions/run-nitro-test-node@main
- uses: OffchainLabs/actions/run-nitro-test-node@main
with:
nitro-testnode-ref: deneb-integration
args: --pos
Expand All @@ -146,13 +146,13 @@ jobs:
run: yarn test:4844
test-e2e:
name: Test e2e
runs-on: ubuntu-latest
runs-on: linux-2xl
steps:
- uses: actions/checkout@v3
with:
submodules: recursive

- uses: Layr-Labs/arbitrum-actions/run-nitro-test-node@main
- uses: OffchainLabs/actions/run-nitro-test-node@main
with:
l3-node: true
no-token-bridge: true
Expand All @@ -176,13 +176,13 @@ jobs:
run: yarn test:e2e
test-e2e-custom-fee-token:
name: Test e2e custom fee token
runs-on: ubuntu-latest
runs-on: linux-2xl
steps:
- uses: actions/checkout@v3
with:
submodules: recursive

- uses: Layr-Labs/arbitrum-actions/run-nitro-test-node@main
- uses: OffchainLabs/actions/run-nitro-test-node@main
with:
l3-node: true
args: --l3-fee-token
Expand All @@ -207,13 +207,13 @@ jobs:
run: yarn test:e2e
test-e2e-fee-token-6-decimals:
name: Test e2e fee token with 6 decimals
runs-on: ubuntu-latest
runs-on: linux-2xl
steps:
- uses: actions/checkout@v3
with:
submodules: recursive

- uses: Layr-Labs/arbitrum-actions/run-nitro-test-node@main
- uses: OffchainLabs/actions/run-nitro-test-node@main
with:
l3-node: true
args: --l3-fee-token --l3-fee-token-decimals 6
Expand Down
Loading