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

v3 #65

Open
wants to merge 27 commits into
base: master
Choose a base branch
from
Open

v3 #65

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
2 changes: 1 addition & 1 deletion .github/workflows/test-foundry.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ jobs:

- uses: actions/setup-node@v2
with:
node-version: '16'
node-version: '18'

# Runs a single command using the runners shell
- name: Install packages
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/test-on-arbitrum.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ jobs:

- uses: actions/setup-node@v2
with:
node-version: '16'
node-version: '18'

# Runs a single command using the runners shell
- name: Install packages
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/test-on-avalanche.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ jobs:

- uses: actions/setup-node@v2
with:
node-version: '16'
node-version: '18'

# Runs a single command using the runners shell
- name: Install packages
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/test-on-bsc.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ jobs:

- uses: actions/setup-node@v2
with:
node-version: '16'
node-version: '18'

# Runs a single command using the runners shell
- name: Install packages
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/test-on-ethereum.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ jobs:

- uses: actions/setup-node@v2
with:
node-version: '16'
node-version: '18'

# Runs a single command using the runners shell
- name: Install packages
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/test-on-fantom.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ jobs:

- uses: actions/setup-node@v2
with:
node-version: '16'
node-version: '18'

# Runs a single command using the runners shell
- name: Install packages
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/test-on-gnosis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ jobs:

- uses: actions/setup-node@v2
with:
node-version: '16'
node-version: '18'

# Runs a single command using the runners shell
- name: Install packages
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/test-on-optimism.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ jobs:

- uses: actions/setup-node@v2
with:
node-version: '16'
node-version: '18'

# Runs a single command using the runners shell
- name: Install packages
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/test-on-polygon.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ jobs:

- uses: actions/setup-node@v2
with:
node-version: '16'
node-version: '18'

# Runs a single command using the runners shell
- name: Install packages
Expand Down
44 changes: 44 additions & 0 deletions .github/workflows/test-on-worldchain.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,44 @@
# This is a basic workflow to help you get started with Actions

name: Test on Worldchain

# Controls when the action will run.
on:
# Triggers the workflow on push or pull request events but only for the master branch
push:
branches-ignore:
- master

# Allows you to run this workflow manually from the Actions tab
workflow_dispatch:

# A workflow run is made up of one or more jobs that can run sequentially or in parallel
jobs:
# This workflow contains a single job called "build"
test-on-worldchain:
# The type of runner that the job will run on
runs-on: ubuntu-latest

env:
MNEMONIC: ${{secrets.MNEMONIC}}
WORLDCHAIN_RPC_URL: ${{secrets.WORLDCHAIN_RPC_URL}}

# Steps represent a sequence of tasks that will be executed as part of the job
steps:

# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
- uses: actions/checkout@v2

- uses: actions/setup-node@v2
with:
node-version: '18'

# Runs a single command using the runners shell
- name: Install packages
run: yarn install

- name: Compile
run: yarn compile

- name: Run test
run: yarn test:worldchain
Loading
Loading