feat: Add v1 RollupAdminLogic getters #1001
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: | |
# https://docs.github.com/en/actions/using-workflows/workflow-syntax-for-github-actions#concurrency | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }} | |
cancel-in-progress: true | |
env: | |
ARBISCAN_API_KEY: ${{ secrets.ARBISCAN_API_KEY }} | |
jobs: | |
audit: | |
name: 'Audit' | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Install node_modules | |
uses: OffchainLabs/actions/node-modules/install@main | |
- name: Run audit | |
run: yarn audit:ci | |
check-formatting: | |
name: 'Check Formatting' | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Install node_modules | |
uses: OffchainLabs/actions/node-modules/install@main | |
- name: Check formatting with Prettier | |
run: yarn prettier:check | |
test-unit: | |
name: Test (Unit) | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Install node_modules | |
uses: OffchainLabs/actions/node-modules/install@main | |
- name: Copy .env | |
run: cp ./.env.example ./.env | |
- name: Build | |
run: yarn build | |
- name: Test | |
run: yarn test:unit | |
test-integration: | |
name: Test (Integration) | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Install node_modules | |
uses: OffchainLabs/actions/node-modules/install@main | |
- name: Set up the local node | |
uses: OffchainLabs/actions/run-nitro-test-node@feat-simplify | |
with: | |
nitro-testnode-ref: release | |
args: --tokenbridge --l3node --l3-token-bridge --l3-fee-token | |
- name: Copy .env | |
run: cp ./.env.example ./.env | |
- name: Build | |
run: yarn build | |
- name: Test | |
run: yarn test:integration |