Skip to content

Add voice input functionality #2

Add voice input functionality

Add voice input functionality #2

Workflow file for this run

name: CI
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v5
- name: Setup Node.js
uses: actions/setup-node@v5
with:
node-version: "22"
- name: Pin NPM version
run: npm install -g npm@11.5.2
- name: Install dependencies
# This (`npm install) is a workaround for the fact that release-please
# is not properly updating the lockfile for interdependencies. `npm ci`
# will fail if more than one package has a version change. This is a bug
# in release-please, which should be updating the version numbers in release PR.
run: npm install
- name: Run Prettier
run: npm run prettier-check
- name: Run Lint
run: npm run lint
- name: Run Tests
run: npm run test
- name: Build
run: npm run build