Skip to content

💚 Install pulseaudio #405

💚 Install pulseaudio

💚 Install pulseaudio #405

Workflow file for this run

name: Node CI
on:
- push
- pull_request
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [15.x, 16.x, 17.x]
steps:
- uses: actions/checkout@v1
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v1
with:
node-version: ${{ matrix.node-version }}
- name: Install pulseaudio
run: sudo apt-get install pulseaudio
- name: Update npm
run: |
npm i -g npm@^7.x
- name: npm install, lint, build, and test
run: |
npm ci
node node_modules/puppeteer/install.js
npm run lint
npm run build
xvfb-run --auto-servernum npm test
env:
CI: true