Skip to content

fix: bump movevm v0.5.0, ffi call and cleanup code #64

fix: bump movevm v0.5.0, ffi call and cleanup code

fix: bump movevm v0.5.0, ffi call and cleanup code #64

Workflow file for this run

name: Build & Test
on:
workflow_dispatch:
pull_request:
paths:
- 'src/**'
- 'libcompiler.**'
- 'package.json'
- 'package-lock.json'
push:
branches:
- main
- 'release/*'
paths:
- 'src/**'
- 'libcompiler.**'
- 'package.json'
- 'package-lock.json'
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
test:
name: Build & Test
runs-on: ubuntu-latest
strategy:
matrix:
version: [18, 20]
env:
# for private repo access
GITHUB_ACCESS_TOKEN: ${{ secrets.GH_READ_TOKEN }}
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v4
with:
node-version: ${{ matrix.version }}
- run: npm install
- run: npm run build
# for private repo access
- run: git config --global url.https://${GITHUB_ACCESS_TOKEN}:x-oauth-basic@github.com/.insteadOf https://github.com/
- run: npm run test
- run: npm run lint