Skip to content

feat: update Allo SDK code for v2.1 and configure unit tests #191

feat: update Allo SDK code for v2.1 and configure unit tests

feat: update Allo SDK code for v2.1 and configure unit tests #191

Workflow file for this run

name: Test and Lint
on:
push:
branches:
- main
pull_request:
branches:
- "**"
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Use Node.js
uses: actions/setup-node@v1
with:
node-version: '>= 18'
- name: Install dependencies
run: yarn install --frozen-lockfile
- name: Run tests
run: npm test
- name: Run linter
run: yarn lint