Skip to content

fix: update generate endpoints function #34

fix: update generate endpoints function

fix: update generate endpoints function #34

Workflow file for this run

name: Test
on:
push:
branches:
- master
- alpha
pull_request:
branches:
- "**"
jobs:
test:
strategy:
matrix:
node: ["20.x"]
os: [ubuntu-latest]
runs-on: ${{ matrix.os }}
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Use Node.js
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node }}
cache: 'npm'
- name: Install dependencies
run: npm ci
- name: Build packages
run: npm run build
- name: Run tests
run: npm run test:devnet