Skip to content

release v3.3.15

release v3.3.15 #1231

Workflow file for this run

name: Run tests
on: [push]
jobs:
build:
name: 'Node ${{ matrix.node-version }} on ${{ matrix.os }}'
runs-on: ${{ matrix.os }}
strategy:
matrix:
node-version: [18.x, 20.x]
os: [ubuntu-latest, macos-15]
steps:
- uses: actions/checkout@v2
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v2
with:
node-version: ${{ matrix.node-version }}
- run: npm ci
- name: Linux test
if: matrix.os == 'ubuntu-latest'
run: |
sudo apt-get update
sudo apt-get install ffmpeg
xvfb-run --auto-servernum ./run --ci
- run: make eslint
#- run: make prettier-lint