Skip to content

Proposal for a unified docs structure across SDKs #110

Proposal for a unified docs structure across SDKs

Proposal for a unified docs structure across SDKs #110

Workflow file for this run

name: Continuous Integration
on: pull_request
jobs:
linter:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Set up Node
uses: actions/setup-node@v3
with:
node-version: "18"
- name: Install package
run: yarn install
- name: Run the linter
run: yarn lint
unit-tests:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Set up Node
uses: actions/setup-node@v3
with:
node-version: "18"
- name: Install package
run: yarn install
- name: Run Unit test
run: yarn test
env:
KEY_ID: ${{ secrets.KEY_ID }}
KEY_SECRET: ${{ secrets.KEY_SECRET }}
SERVER_URL: ${{ secrets.SERVER_URL }}