Skip to content

package.json: adds bugs & homepage url + normalize urls #58

package.json: adds bugs & homepage url + normalize urls

package.json: adds bugs & homepage url + normalize urls #58

Workflow file for this run

name: test
on:
- push
- pull_request
jobs:
test:
name: Node.js ${{ matrix.node-version }} on ${{ matrix.os }}
runs-on: ${{ matrix.os }}
strategy:
matrix:
node-version:
- 18
- 16
- 14
os:
- ubuntu-latest
- macos-latest
- windows-latest
steps:
- uses: actions/checkout@v2
- if: contains(matrix.os, 'ubuntu')
run: sudo apt-get install libimagequant-dev
- if: contains(matrix.os, 'macos')
run: brew install libimagequant
- uses: actions/setup-node@v2
with:
node-version: ${{ matrix.node-version }}
- run: npm install
- run: npm test