Skip to content

feat: support V2 endpoints #90

feat: support V2 endpoints

feat: support V2 endpoints #90

Workflow file for this run

name: CI
on:
push:
branches:
- main
pull_request:
branches:
- main
env:
RELEASE_NODE_VERSION: "18.x" # https://nodejs.dev/en/about/releases
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: ${{ env.RELEASE_NODE_VERSION }}
- name: Install dependencies
run: yarn install
- name: Build project
run: yarn build
- name: Test project
run: yarn test