Skip to content

chore(deps-dev): bump micromatch from 4.0.5 to 4.0.8 #334

chore(deps-dev): bump micromatch from 4.0.5 to 4.0.8

chore(deps-dev): bump micromatch from 4.0.5 to 4.0.8 #334

Workflow file for this run

name: Node.js CI
on:
push:
branches: [master]
pull_request:
branches: [master]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Use Node.js
uses: actions/setup-node@v3
with:
node-version: 20
- name: Install dependencies
run: npm ci
- name: Run tests
run: npm run test --coverage
env:
CI: "true"
- name: Build project
run: npm run build
- name: Verify that the project is built
run: |
if [[ -n $(git status -s) ]]; then
echo "ERROR: generated dist/ differs from the current sources"
git diff
exit 1
fi