Skip to content

chore(deps): bump micromatch from 4.0.5 to 4.0.8 #990

chore(deps): bump micromatch from 4.0.5 to 4.0.8

chore(deps): bump micromatch from 4.0.5 to 4.0.8 #990

Workflow file for this run

name: 'Test'
on:
pull_request:
push:
branches:
- main
jobs:
test:
name: 'Run Tests 🧪'
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@0ad4b8fadaa221de15dcec353f45205ec38ea70b # v4.1.4
- name: Setup Node
uses: actions/setup-node@60edb5dd545a775178f52524783378180af0d1f8 # v4.0.2
with:
node-version: '20.x'
cache: 'npm'
cache-dependency-path: '**/package-lock.json'
- name: Install and build
run: |
npm ci
npm run build
- name: Run Jest
run: npm run test