Skip to content

Test for checksum format in addresses (#28) #76

Test for checksum format in addresses (#28)

Test for checksum format in addresses (#28) #76

Workflow file for this run

name: JS Checks
on:
pull_request:
push:
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}-${{ github.event_name }}
cancel-in-progress: true
# The reusable workflow at bloq/actions/.github/workflows/js-checks.yml@v1
# cannot be used as environment variables must be sent to the test command to
# overwrite the EVM RPC URL of Hemi mainnet. When this is not needed anymore,
# the custom workflow should be replaced by the reusable one.
jobs:
js-checks:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: bloq/actions/setup-node-env@v1
with:
cache: npm
- run: npm run --if-present format:check
- run: npm run --if-present lint
- run: npm run --if-present deps:check
run-tests:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: bloq/actions/setup-node-env@v1
with:
cache: npm
- run: npm run test
env:
EVM_RPC_URL_43111: ${{ secrets.EVM_RPC_URL_43111 }}
EVM_RPC_URL_743111: ${{ secrets.WEB3_RPC_743111 }}