Skip to content

Bump micromatch from 4.0.7 to 4.0.8 #8

Bump micromatch from 4.0.7 to 4.0.8

Bump micromatch from 4.0.7 to 4.0.8 #8

Workflow file for this run

---
name: Build
on:
push:
branches: [master]
paths:
- src/**
- package.json
- yarn.lock
- rollup.config.js
pull_request:
branches: [master]
permissions:
contents: read
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node: [16.0, 18.0]
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node }}
- name: Install Yarn
run: npm install -g yarn
- name: Install dependencies
run: yarn install
- name: Run build
run: yarn build