Add voice input functionality #2
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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 |