Skip to content

chore: update ffmpeg-static #59

chore: update ffmpeg-static

chore: update ffmpeg-static #59

Workflow file for this run

name: CI
on:
- push
jobs:
run:
name: Test on node ${{ matrix.node }} and ${{ matrix.os }}
runs-on: ${{ matrix.os }}
strategy:
matrix:
node:
- 14.x
- 16.x
- 18.x
os:
- ubuntu-latest
- windows-latest
steps:
- uses: actions/checkout@v3
- name: Use Node.js ${{ matrix.node }}
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node }}
- name: Install dependencies
run: npm ci
env:
CI: true
- name: Lint
run: npm run lint
- name: Test
run: npm test
env:
CI: true
- name: Build
run: npm run build