fix: additional named addresss by base64 instead of utf8 in cString convertion #127
Workflow file for this run
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: Test & Build builder.js | |
on: | |
workflow_dispatch: | |
pull_request: | |
paths: | |
- 'src/**' | |
- 'libcompiler.**' | |
- 'libmovevm.**' | |
- 'package.json' | |
- 'package-lock.json' | |
push: | |
branches: | |
- main | |
- 'release/*' | |
paths: | |
- 'src/**' | |
- 'libcompiler.**' | |
- 'libmovevm.**' | |
- 'package.json' | |
- 'package-lock.json' | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.ref }} | |
cancel-in-progress: true | |
jobs: | |
test: | |
name: Test & Build | |
runs-on: ubuntu-latest | |
env: | |
GITHUB_ACCESS_TOKEN: ${{ secrets.GH_READ_TOKEN }} | |
RUST_BACKTRACE: 1 | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Setup Node.js | |
uses: actions/setup-node@v3 | |
with: | |
node-version: '20' | |
- name: Install specific npm version | |
run: npm install -g [email protected] | |
- name: Clean npm cache | |
run: npm cache clean --force | |
- run: npm install | |
- run: npm run build | |
- run: npm run test | |
- run: npm run lint | |