Skip to content

Bump micromatch from 4.0.5 to 4.0.8 in /docs #93

Bump micromatch from 4.0.5 to 4.0.8 in /docs

Bump micromatch from 4.0.5 to 4.0.8 in /docs #93

Workflow file for this run

name: Dusa tests
on:
push:
jobs:
run-static-tests:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Use Node.js
uses: actions/setup-node@v4
with:
node-version: 20.x
registry-url: 'https://registry.npmjs.org'
- run: npm ci
- name: Check formatting with prettier
run: npm run prettier:check
- name: Check for issues with eslint
run: npm run lint
- name: Check for type errors with typescript
run: npm run tsc
- name: Run unit tests
run: npm run test