Skip to content

Bump glob from 9.3.4 to 10.0.0 #634

Bump glob from 9.3.4 to 10.0.0

Bump glob from 9.3.4 to 10.0.0 #634

Workflow file for this run

name: CI
on:
push:
branches-ignore:
- "dependabot/**"
pull_request:
jobs:
test:
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
node:
- 14
- 16
- 18
os:
- ubuntu-latest
- macos-latest
- windows-latest
steps:
- uses: actions/checkout@v3
- name: Setup Node.js environment
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node }}
cache: npm
- name: Install packages
run: npm ci
- name: Lint and run tests
run: npm run precommit