Skip to content

feat: add text-to-speech functionality with API integration and relat… #92

feat: add text-to-speech functionality with API integration and relat…

feat: add text-to-speech functionality with API integration and relat… #92

Workflow file for this run

name: CI
on:
push:
branches:
- main
- master
- work
pull_request:
concurrency:
group: ci-${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
lint-and-build:
runs-on: ubuntu-latest
timeout-minutes: 20
steps:
- name: Checkout
uses: actions/checkout@v6
- name: Setup Node
uses: actions/setup-node@v6
with:
node-version-file: .nvmrc
package-manager-cache: false
- name: Install dependencies
run: |
if [ -f package-lock.json ]; then
npm ci
else
npm install
fi
- name: Lint
run: npm run lint
- name: Build
run: npm run build