Skip to content

fix(transcription): resolve three deepsec transcription-pipeline bugs… #411

fix(transcription): resolve three deepsec transcription-pipeline bugs…

fix(transcription): resolve three deepsec transcription-pipeline bugs… #411

Workflow file for this run

name: Test
on: push
permissions:
contents: read
jobs:
test:
name: Test
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@34e114876b0b11c390a56381ad16ebd13914f8d5 # v4.3.1
with:
fetch-depth: 0
- name: Setup Node
uses: actions/setup-node@49933ea5288caeca8642d1e84afbd3f7d6820020 # v4.4.0
with:
node-version: 22
cache: 'npm'
- name: Install dependencies
run: npm install
- name: Lint
run: npm run lint
- name: Format check
run: npm run format:check
- name: Type check
run: npm run typecheck
- name: Build
run: npm run build
- name: Run tests
run: npm run test