Skip to content

Commit dd9d716

Browse files
bgrozevrpurdel
andauthored
Add tests and cleanup (#55)
* Add a test framework and basic tests. * Add more tests. * Remove unused index.ts. * Remove unused transcribe parameter * Allow connections when dispatcher is configured * Remove unused transcriptionator * feat: add test workflow --------- Co-authored-by: RazvanP <razvan.purdel@8x8.com>
1 parent b664f0e commit dd9d716

27 files changed

+9665
-1073
lines changed

.github/workflows/test.yml

Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
name: "Run tests"
2+
on:
3+
pull_request:
4+
branches:
5+
- main
6+
push:
7+
branches:
8+
- main
9+
10+
jobs:
11+
test:
12+
runs-on: "ubuntu-latest"
13+
steps:
14+
- name: Checkout
15+
uses: actions/checkout@v4
16+
17+
- uses: actions/setup-node@v4
18+
with:
19+
node-version: 22
20+
cache: npm
21+
22+
- name: Install dependencies
23+
run: npm ci
24+
25+
- name: Run tests
26+
run: npm test

0 commit comments

Comments
 (0)