Skip to content

Replace Parser with Multi Asset Transfer #1321

Replace Parser with Multi Asset Transfer

Replace Parser with Multi Asset Transfer #1321

Workflow file for this run

name: Node.js CI
on:
push:
branches: [master]
pull_request:
jobs:
test:
strategy:
matrix:
node: [20.x, 22.x]
os: [ubuntu-latest]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v4
- name: Set up Node.js
uses: actions/setup-node@v4
with:
node-version: "20"
- name: Cache node modules
uses: actions/cache@v4
with:
path: |
node_modules
~/.cache/yarn
key: ${{ runner.os }}-yarn-${{ hashFiles('yarn.lock') }}
restore-keys: |
${{ runner.os }}-yarn-
- run: yarn --frozen-lockfile
- run: yarn build
- run: yarn lint
- run: yarn coverage