tests for voice
All checks were successful
NPM Audit Check / Check NPM audit (push) Successful in -1m32s

This commit is contained in:
2025-08-24 15:11:11 -05:00
parent 7f45387dac
commit 6ab158cee0
7 changed files with 1655 additions and 8 deletions

33
.github/workflows/test.yml vendored Normal file
View File

@@ -0,0 +1,33 @@
name: NPM Audit Check
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
schedule:
- cron: '15 16 * * 5'
jobs:
npm_audit:
name: Check NPM audit
runs-on: ubuntu-latest
timeout-minutes: 20
strategy:
fail-fast: true
permissions:
contents: read
steps:
- name: Checkout repository
uses: https://github.com/actions/checkout@v4
- name: Setup nodejs
uses: https://github.com/actions/setup-node@v4
- name: Install dependencies
run: npm ci
- run: npm test
name: Run tests