Skip to content

Commit

Permalink
Nodejs llm voice assistant (#12)
Browse files Browse the repository at this point in the history
  • Loading branch information
albho authored Aug 26, 2024
1 parent 9b54d12 commit f4ac38c
Show file tree
Hide file tree
Showing 12 changed files with 1,834 additions and 0 deletions.
35 changes: 35 additions & 0 deletions .github/workflows/nodejs-codestyle.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,35 @@
name: Node.js Codestyle

on:
workflow_dispatch:
push:
branches: [ main ]
paths:
- '**/nodejs/*.js'
- '**/nodejs/*.ts'
- '.github/workflows/nodejs-codestyle.yml'
pull_request:
branches: [ main, 'v[0-9]+.[0-9]+' ]
paths:
- '**/nodejs/*.js'
- '**/nodejs/*.ts'
- '.github/workflows/nodejs-codestyle.yml'

jobs:
check-nodejs-codestyle:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v3

- name: Set up Node.js LTS
uses: actions/setup-node@v3
with:
node-version: lts/*

- name: Pre-build dependencies
run: npm install yarn

- name: Run Binding Linter
run: yarn && yarn lint
working-directory: recipes/llm-voice-assistant/nodejs
1 change: 1 addition & 0 deletions recipes/llm-voice-assistant/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,3 +15,4 @@ Hands-free voice assistant powered by a large language model (LLM), all voice re
- [Android](android)
- [iOS](ios)
- [Web](web)
- [Node.js](nodejs)
2 changes: 2 additions & 0 deletions recipes/llm-voice-assistant/nodejs/.eslintignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
node_modules
.eslintrc.js
Loading

0 comments on commit f4ac38c

Please sign in to comment.