Skip to content

build(deps): bump micromatch from 4.0.5 to 4.0.8 #368

build(deps): bump micromatch from 4.0.5 to 4.0.8

build(deps): bump micromatch from 4.0.5 to 4.0.8 #368

Workflow file for this run

name: CI
on: [push, pull_request]
jobs:
test:
strategy:
fail-fast: false
matrix:
os:
- 'ubuntu-latest'
# - 'macos-latest'
# - 'windows-latest'
node_version:
- '18'
- '16'
- '14'
- '12'
name: Node.js ${{ matrix.node_version }} on ${{ matrix.os }}
runs-on: ${{ matrix.os }}
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Setup Node.js
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node_version }}
# https://github.com/bahmutov/npm-install/issues/103#issuecomment-931226602
- name: Update NPM
run: npm install --global npm@8
- name: Install Dependencies
run: npm ci
- name: Lint
if: matrix.node_version == '18'
run: npm run lint
- name: Run Tests
run: npm run test-coverage