Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Nodejs binding #3

Merged
merged 27 commits into from
Aug 15, 2024
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
pulseaudio ubuntu
  • Loading branch information
albho committed Aug 7, 2024
commit 63402bb04378f87bf0afb5a807b0006e20ed6937
12 changes: 7 additions & 5 deletions .github/workflows/nodejs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -52,8 +52,13 @@ jobs:
- name: Build
run: yarn build

- name: Emulate Soundcard
run: sudo apt-get install pulseaudio -y
- name: Install PulseAudio on Ubuntu
run: |
sudo apt-get update
sudo apt-get install -y pulseaudio
pulseaudio --check || pulseaudio --start
pactl load-module module-null-sink sink_name=vspeaker sink_properties=device.description=virtual_speaker
pactl load-module module-remap-source master=vspeaker.monitor source_name=vmic source_properties=device.description=virtual_mic

- name: Test
run: yarn test
Expand Down Expand Up @@ -82,8 +87,5 @@ jobs:
- name: Build
run: yarn build

- name: Emulate Soundcard
run: sudo apt-get install pulseaudio -y

- name: Test
run: yarn test