Skip to content

feat: adds send command to example client, currently non-functional #89

feat: adds send command to example client, currently non-functional

feat: adds send command to example client, currently non-functional #89

Workflow file for this run

name: Run Unit Tests
on:
pull_request:
branches:
- main
jobs:
test:
runs-on: ubuntu-latest
env:
NODE_HOST: ${{ secrets.NODE_HOST }}
NODE_PORT: ${{ secrets.NODE_PORT }}
NODE_AUTH_TOKEN: ${{ secrets.NODE_AUTH_TOKEN }}
steps:
- name: Checkout code
uses: actions/checkout@v2
- name: Set up Node.js
uses: actions/setup-node@v2
with:
node-version: '18'
- name: Install dependencies
run: npm install
- name: Run tests
run: npm run test