Skip to content

feat: Refactor silence timeout to clear on speech start and begin on … #12

feat: Refactor silence timeout to clear on speech start and begin on …

feat: Refactor silence timeout to clear on speech start and begin on … #12

Workflow file for this run

name: CI
on:
push:
branches: [main]
pull_request:
branches: [main]
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
lint-and-test:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version: 20
cache: 'yarn'
- name: Install dependencies
run: yarn install --frozen-lockfile
- name: Lint
run: yarn lint
- name: Type check
run: yarn typecheck
- name: Format check
run: yarn format:check
- name: Test
run: yarn test:coverage
- name: Build
run: yarn build
- name: Upload coverage
uses: codecov/codecov-action@v4
with:
files: ./coverage/lcov.info
fail_ci_if_error: false