Skip to content

Bump picomatch

Bump picomatch #943

Workflow file for this run

name: GuideChimp - CI
on:
push:
pull_request:
permissions:
contents: read
jobs:
build:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
node-version: [20.x, 22.x, 24.x]
steps:
- uses: actions/checkout@v5
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v5
with:
node-version: ${{ matrix.node-version }}
cache: 'npm'
- name: Cache npm modules
uses: actions/cache@v3
with:
path: ~/.npm
key: ${{ runner.os }}-npm-${{ matrix.node-version }}-${{ hashFiles('**/package-lock.json') }}
restore-keys: |
${{ runner.os }}-npm-${{ matrix.node-version }}-
${{ runner.os }}-npm-
- name: Install dependencies
run: npm ci
- name: Lint
run: npm run lint
- name: Audit dependencies
run: |
npm outdated || true
npm audit --audit-level=high || true
- name: Build
run: npm run build --if-present
- name: Test
run: npm run test
env:
CI: true
- name: Show dist
run: |
ls -la
ls -laR dist/
- name: Archive npm failure logs
uses: actions/upload-artifact@v5
if: failure()
with:
name: npm-logs
path: ~/.npm/_logs
if-no-files-found: ignore