Skip to content

added go sdk

added go sdk #14

Workflow file for this run

name: JS SDK Server Tests
on:
push:
branches: [main]
paths:
- "js-sdk-server/**"
pull_request:
branches: [main]
paths:
- "js-sdk-server/**"
jobs:
test:
runs-on: warp-ubuntu-latest-x64-2x
steps:
- uses: actions/checkout@v3
- name: Use Node.js
uses: actions/setup-node@v3
with:
node-version: "18.x"
cache: "npm"
cache-dependency-path: js-sdk-server/package-lock.json
- name: Install dependencies
working-directory: js-sdk-server
run: npm ci
- name: Run tests
working-directory: js-sdk-server
env:
LIT_POLYGLOT_SDK_TEST_PRIVATE_KEY: ${{ secrets.LIT_POLYGLOT_SDK_TEST_PRIVATE_KEY }}
run: npm test