Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
20 commits
Select commit Hold shift + click to select a range
41898a7
feat(orc-458): update configs after TW update
chasingrainbows Oct 1, 2025
66e09e8
feat(orc-458): implement submitExitRequestsHash
chasingrainbows Oct 1, 2025
321bc79
feat(orc-458): add submitExitRequestsData
chasingrainbows Oct 2, 2025
3595bf7
feat(orc-458): add tests
chasingrainbows Oct 30, 2025
1aeabf6
feat(orc-458): add veb trigger-exit command
chasingrainbows Oct 30, 2025
92bcc05
feat(orc-458): add veb set-limits command
chasingrainbows Oct 31, 2025
96be097
feat(orc-458): add twg contract and abi
chasingrainbows Oct 31, 2025
3a874ea
feat(orc-458): add twg set-limits command
chasingrainbows Oct 31, 2025
ac8a781
feat(orc-458): add nor set-deadline command
chasingrainbows Nov 4, 2025
ef295cc
feat(orc-458): add sdvt set-deadline command
chasingrainbows Nov 5, 2025
0f0398e
feat(orc-458): add get-limits vebo command
chasingrainbows Nov 5, 2025
2f9837e
feat(orc-458): add twg get-limits command
chasingrainbows Nov 5, 2025
014f579
feat(orc-458): add nor get-deadline command
chasingrainbows Nov 5, 2025
77f865b
feat(orc-458): add sdvt get-deadline command
chasingrainbows Nov 5, 2025
f1bca04
feat(orc-458): setup tests for repo
chasingrainbows Nov 6, 2025
123b6b8
feat(orc-458): add simple CI action for tests
chasingrainbows Nov 6, 2025
0e568de
feat(orc-458): improve tests
chasingrainbows Nov 6, 2025
a493e3e
feat(orc-458): vebo submit-data add --calldata and improve tests
chasingrainbows Nov 13, 2025
655b060
feat(orc-458): add note
chasingrainbows Nov 13, 2025
3868d58
feat(orc-458): refactor dublicated code
chasingrainbows Nov 13, 2025
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
35 changes: 28 additions & 7 deletions .github/workflows/tests_and_checks.yml
Original file line number Diff line number Diff line change
@@ -1,23 +1,44 @@
name: Tests and checks
on:
push:
branches:
- main
pull_request:

jobs:
test:
lint:
name: Linter
runs-on: ubuntu-latest
steps:
- name: Checkout repo
uses: actions/checkout@v3
uses: actions/checkout@v4
- name: Set up node
uses: actions/setup-node@v3
uses: actions/setup-node@v4
with:
node-version: 18
node-version: 20
cache: 'yarn'
- name: Install dependencies
run: yarn install --immutable
- name: Run lint
run: yarn lint
- name: Run check types
run: yarn check-types

test:
name: Tests
runs-on: ubuntu-latest
steps:
- name: Checkout repo
uses: actions/checkout@v4
- name: Set up node
uses: actions/setup-node@v4
with:
node-version: 20
cache: 'yarn'
- name: Install Foundry
uses: foundry-rs/foundry-toolchain@v1
- name: Check Foundry installation
run: |
anvil --version
cast --version
- name: Install dependencies
run: yarn install --immutable
- name: Run tests
run: yarn test:run
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ node_modules

.vscode
.DS_Store
.idea

reports/*
wallets/*
Expand Down
Loading