Skip to content

fix: Created another organizations while testing. #17

fix: Created another organizations while testing.

fix: Created another organizations while testing. #17

Workflow file for this run

name: TS-Client run examples
on:
push:
branches:
[development, development_*]
pull_request:
branches:
[development, development_*]
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v2
- name: Set up Node.js
uses: actions/setup-node@v3
with:
node-version: '18.18.0'
- name: Install dependencies
run: cd clients/typescript && yarn install
- name: Create .env file
run: |
cd clients/typescript
touch .env
echo BASE_URL=${{ secrets.BASE_URL }} >> .env
cat .env
- name: Compile TypeScript
run: cd clients/typescript && yarn build
- name: Run Examples
run: cd clients/typescript && npx ts-node ./example.ts