feat(client): add futuresSymbolConfig #188
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Js | |
on: | |
workflow_dispatch: | |
push: | |
branches: [ main, master ] | |
pull_request: | |
branches: [ main, master ] | |
permissions: | |
contents: write | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
fetch-depth: 2 | |
- uses: actions/setup-node@v4 | |
with: | |
node-version: '20' | |
cache: 'npm' | |
- name: Install npm dependencies | |
run: npm i --include=dev | |
- name: Lint | |
run: npm run lint | |
- name: Build | |
run: npm run build | |
- name: Crypto Tests | |
run: npm run crypto-tests | |
- name: Static Tests (TS ESM) | |
run: npm run ts-test-static | |
- name: Static Tests (JS CJS) | |
run: npm run static-test | |
- name: Live Tests (TS ESM) | |
run: npm run ts-test-live | |
- name: Ws Live Tests (spot) | |
run: npm run ws-tests-spot | |
- name: Ws Live Tests (futures) | |
run: npm run ws-tests-futures | |
- name: CJS test | |
run: npm run test-cjs | |
- name: Package test | |
run: npm run package-test |