Skip to content

positions for all instrument types #50

positions for all instrument types

positions for all instrument types #50

Workflow file for this run

# This workflow will run build using node and then publish a package to GitHub Packages when a release is created
# For more information see: https://docs.github.com/en/actions/publishing-packages/publishing-nodejs-packages
name: Tests
on:
push:
workflow_call: # workflow can be called by another workflow
jobs:
test:
runs-on: ubuntu-latest
timeout-minutes: 5
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: 20
- run: npm install
- run: npm test
env:
USERS_DATA: ${{secrets.USERS_DATA}}
API_URL: ${{secrets.API_URL}}
WS_URL: ${{secrets.WS_URL}}