Skip to content

feat: add ASR API key and URL to docker-compose environment variables #98

feat: add ASR API key and URL to docker-compose environment variables

feat: add ASR API key and URL to docker-compose environment variables #98

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