fix: remove omitting of address bytes in function param encoding #1330
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: "Lint, Build, and Test" | |
on: | |
push: | |
branches: | |
- main | |
pull_request: | |
types: [opened, synchronize, reopened] | |
jobs: | |
check: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
os: [ubuntu-latest] | |
node: [18, 20] | |
fail-fast: true | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-node@v4 | |
with: | |
cache: "yarn" # cache node modules | |
node-version: ${{ matrix.node }} | |
- run: corepack enable | |
- run: yarn install --immutable | |
- run: yarn run build | |
- run: yarn run lint | |
- run: yarn run test |