diff --git a/.github/workflows/test-on-worldchain.yml b/.github/workflows/test-on-worldchain.yml index 729ce17..8d982f4 100644 --- a/.github/workflows/test-on-worldchain.yml +++ b/.github/workflows/test-on-worldchain.yml @@ -15,13 +15,13 @@ on: # 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-polygon: + test-on-worldchain: # The type of runner that the job will run on runs-on: ubuntu-latest env: MNEMONIC: ${{secrets.MNEMONIC}} - POLYGON_RPC_URL: ${{secrets.POLYGON_RPC_URL}} + WORLDCHAIN_RPC_URL: ${{secrets.WORLDCHAIN_RPC_URL}} # Steps represent a sequence of tasks that will be executed as part of the job steps: @@ -41,4 +41,4 @@ jobs: run: yarn compile - name: Run test - run: yarn test:polygon + run: yarn test:worldchain