Skip to content

Possibility to pass memSize option from the outside. ESLint fixes. (#… #9

Possibility to pass memSize option from the outside. ESLint fixes. (#…

Possibility to pass memSize option from the outside. ESLint fixes. (#… #9

Workflow file for this run

name: JS Witness calc tests
on:
push:
branches:
- master
pull_request:
jobs:
test:
name: Test
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest]
node-version: ["18", "20", "22"]
steps:
- name: Checkout project
uses: actions/checkout@v4
- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
check-latest: true
cache: 'npm'
- name: Install dependencies
run: npm ci
- name: Run tests
run: npm test