ci: update nitro-testnode params #61
Workflow file for this run
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
name: Build, Test | |
on: | |
pull_request: | |
workflow_dispatch: | |
env: | |
ARBISCAN_API_KEY: ${{ secrets.ARBISCAN_API_KEY }} | |
jobs: | |
install: | |
name: 'Install' | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
- name: Set up Node.js | |
uses: actions/setup-node@v3 | |
with: | |
node-version: 18 | |
- name: Install node_modules | |
uses: OffchainLabs/actions/node-modules/install@main | |
test-unit: | |
name: Test (Unit) | |
runs-on: ubuntu-latest | |
needs: install | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
- name: Set up Node.js | |
uses: actions/setup-node@v3 | |
with: | |
node-version: 18 | |
- name: Restore node_modules | |
uses: OffchainLabs/actions/node-modules/restore@main | |
- name: Generate | |
run: yarn generate | |
- name: Build | |
run: yarn build | |
- name: Test | |
run: yarn test:unit | |
test-integration: | |
name: Test (Integration) | |
runs-on: ubuntu-latest | |
needs: install | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
- name: Set up Node.js | |
uses: actions/setup-node@v3 | |
with: | |
node-version: 18 | |
- name: Restore node_modules | |
uses: OffchainLabs/actions/node-modules/restore@main | |
- name: Set up the local node | |
uses: OffchainLabs/actions/run-nitro-test-node@main | |
with: | |
nitro-testnode-ref: use-tokenbridge-creator | |
# RollupCreator on L1 is deployed by default | |
# RollupCreator on L2 is deployed with --l3node | |
l3-node: true | |
# TokenBridgeCreator on L1 is deployed with --tokenbridge | |
# TokenBridgeCreator on L2 is deployed with --l3-token-bridge | |
args: --tokenbridge --l3-token-bridge | |
- name: Copy .env | |
run: cp ./.env.example ./.env | |
- name: Generate | |
run: yarn generate | |
- name: Build | |
run: yarn build | |
- name: Test | |
run: yarn test:integration |