Skip to content

chore(deps): bump minimatch from 9.0.1 to 9.0.2 (#662) #344

chore(deps): bump minimatch from 9.0.1 to 9.0.2 (#662)

chore(deps): bump minimatch from 9.0.1 to 9.0.2 (#662) #344

Workflow file for this run

name: Node CI
on: [push, pull_request]
jobs:
ubuntu-test:
name: Test on node ${{ matrix.node-version }} and Ubuntu
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
node-version: [16.x, 18.x, 20.x]
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
cache: 'npm'
- run: npm i -g npm
- run: node -v
- run: npm -v
- run: npm ci
- run: npm test
mac-and-windows-test:
name: Test on node latest and ${{ matrix.os }}
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
os: [windows-latest, macos-latest]
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: 20.x
cache: 'npm'
- run: npm i -g npm
- run: node -v
- run: npm -v
- run: npm ci
- run: npm test