Skip to content
Merged
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
13 changes: 9 additions & 4 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -24,19 +24,24 @@ jobs:
- name: Build
run: make all

- name: Test
run: make test

- uses: actions/setup-node@v4
with:
node-version: 18

- name: Run e2e tests
shell: bash
run: |
export TERM=xterm-256color
curl -L https://foundry.paradigm.xyz | bash
source /home/runner/.bashrc
FOUNDRY_HOME="/home/runner/.foundry/bin"
PATH="${FOUNDRY_HOME}:${PATH}"
/home/runner/.foundry/bin/foundryup
e2e_test/run_all_tests.sh

- name: Test
run: make test

Lint:
runs-on: ["8-cpu","self-hosted","org"]
steps:
Expand All @@ -48,4 +53,4 @@ jobs:
cache: false

- name: Lint
run: make lint
run: make lint
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@
*/**/*tx_database*
*/**/*dapps*
build/_vendor/pkg
node_modules

#*
.#*
Expand Down
2 changes: 2 additions & 0 deletions e2e_test/js-tests/Makefile
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
format:
npx @biomejs/biome format --write .
Loading