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

Tests V2 #1026

Merged
merged 40 commits into from
Sep 26, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
40 commits
Select commit Hold shift + click to select a range
cbcc2db
runtime 2260 wip
shunjizhan Sep 10, 2024
8e1f167
basic setup for eth provider tests
shunjizhan Sep 21, 2024
6ba5362
fix
shunjizhan Sep 21, 2024
279dbc4
fix
shunjizhan Sep 21, 2024
555a6f6
update
shunjizhan Sep 21, 2024
680bd21
eth rpc tests
shunjizhan Sep 23, 2024
aca7e7c
fix
shunjizhan Sep 23, 2024
d3d7c62
merge coverage report
shunjizhan Sep 23, 2024
ba05f76
polish
shunjizhan Sep 23, 2024
6ed5527
fix
shunjizhan Sep 23, 2024
bf9faa6
eth transactions tests
shunjizhan Sep 24, 2024
6d7df26
hardhat e2e tets
shunjizhan Sep 24, 2024
1b778e7
dump docker logs
shunjizhan Sep 24, 2024
b40bbb1
fix e2e test
shunjizhan Sep 24, 2024
761e89f
fix
shunjizhan Sep 24, 2024
623be26
fix
shunjizhan Sep 24, 2024
9552e2c
fix
shunjizhan Sep 24, 2024
a124bb8
fix
shunjizhan Sep 24, 2024
07a0ede
clean up docker files
shunjizhan Sep 24, 2024
c2f71a7
polish
shunjizhan Sep 24, 2024
8bee5e7
clean up
shunjizhan Sep 24, 2024
9de78da
fix yarn
shunjizhan Sep 24, 2024
1db2ab9
fix
shunjizhan Sep 24, 2024
579e226
merge master
shunjizhan Sep 24, 2024
513789b
enable wasm override
shunjizhan Sep 25, 2024
4b724be
truffle e2e
shunjizhan Sep 25, 2024
8a97cbe
fix
shunjizhan Sep 25, 2024
342b859
fix
shunjizhan Sep 25, 2024
e9caa22
viem e2e
shunjizhan Sep 25, 2024
7357874
update
shunjizhan Sep 25, 2024
4e3e8f2
bodhi tests
shunjizhan Sep 25, 2024
3563300
polish
shunjizhan Sep 25, 2024
caff225
fix
shunjizhan Sep 25, 2024
399a2c8
fix merge
shunjizhan Sep 25, 2024
9984ca0
clean up
shunjizhan Sep 25, 2024
48bf785
cleanup
shunjizhan Sep 25, 2024
d2663f6
add codecov yml
shunjizhan Sep 25, 2024
addf176
use latest action
shunjizhan Sep 25, 2024
fe40928
fix deprecation warning
shunjizhan Sep 25, 2024
4ec551a
checkout and setupnode v4
shunjizhan Sep 25, 2024
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
3 changes: 3 additions & 0 deletions .eslintrc.js
Original file line number Diff line number Diff line change
Expand Up @@ -70,4 +70,7 @@ module.exports = {
},
},
},
ignorePatterns: [
'**/e2e-truffle/**',
],
};
6 changes: 0 additions & 6 deletions .gitattributes

This file was deleted.

6 changes: 6 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,11 +16,13 @@ jobs:
submodules: 'recursive'
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v2

- name: Login to Docker Hub
uses: docker/login-action@v2
with:
username: ${{ secrets.DOCKERHUB_USERNAME }}
password: ${{ secrets.DOCKERHUB_TOKEN }}

- name: Docker meta
id: meta
uses: docker/metadata-action@v4
Expand All @@ -30,6 +32,7 @@ jobs:
type=semver,pattern={{version}}
type=raw,value={{sha}}
type=ref,event=branch

- name: Build and push
uses: docker/build-push-action@v4
with:
Expand All @@ -49,11 +52,13 @@ jobs:
submodules: 'recursive'
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v2

- name: Login to Docker Hub
uses: docker/login-action@v2
with:
username: ${{ secrets.DOCKERHUB_USERNAME }}
password: ${{ secrets.DOCKERHUB_TOKEN }}

- name: Docker meta
id: meta
uses: docker/metadata-action@v4
Expand All @@ -63,6 +68,7 @@ jobs:
type=semver,pattern={{version}}
type=raw,value={{sha}}
type=ref,event=branch

- name: Build and push
uses: docker/build-push-action@v4
with:
Expand Down
Loading
Loading