Skip to content

Merge pull request #80 from koinos/kcs-4-token #107

Merge pull request #80 from koinos/kcs-4-token

Merge pull request #80 from koinos/kcs-4-token #107

Workflow file for this run

name: Test
on:
push:
branches:
- "*"
jobs:
build:
runs-on: ${{ matrix.platform }}
name: "${{ matrix.platform }} ${{ matrix.node-version }}"
strategy:
matrix:
platform: [ubuntu-latest, macos-latest, windows-latest]
node-version: [16.x, 17.x]
steps:
- name: Checkout 🛎️
uses: actions/checkout@v3
with:
submodules: recursive
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v2
with:
node-version: ${{ matrix.node-version }}
- name: Install dependencies
run: yarn --frozen-lockfile
- name: Run test
run: yarn ci