Skip to content

Bump minimatch from 9.0.5 to 9.0.7 #90

Bump minimatch from 9.0.5 to 9.0.7

Bump minimatch from 9.0.5 to 9.0.7 #90

Workflow file for this run

name: run-tests
on: [push, pull_request]
jobs:
build-and-test:
runs-on: ubuntu-latest
container: node:${{ matrix.node }}-bookworm
strategy:
matrix:
node: [20, 22, 24]
name: Node ${{ matrix.node }} sample
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Install packages
run: |
apt-get update
apt-get -y install build-essential pkg-config libgd-dev libheif-dev libavif-dev libaom-dev libdav1d-dev libx265-dev
- name: Show libgd feature flags
run: |
gdlib-config --features || gdlib-config --all || true
- name: Run npm tasks
run: npm install && npm run test