Skip to content

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

chore(deps): bump micromatch from 4.0.5 to 4.0.8

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

Workflow file for this run

name: Verify Code for PR
on:
push:
branches: ["main"]
pull_request:
branches: ["main"]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [20.9.0]
# See supported Node.js release schedule at https://nodejs.org/en/about/releases/
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Use Nodejs
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
cache: 'npm'
- name: Install Node dependencies
run: npm ci --prefer-offline --no-audit
- name: Check types
run: |
npm run check:types
- name: Check events
run: |
npm run check:events
- name: Prettier check
run: |
npm run prettier:check