Skip to content

Bump micromatch from 4.0.7 to 4.0.8 #60

Bump micromatch from 4.0.7 to 4.0.8

Bump micromatch from 4.0.7 to 4.0.8 #60

Workflow file for this run

name: Node.js CI
on: [push]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: ["20.11.0"]
steps:
- uses: actions/checkout@v2
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v2
with:
node-version: ${{ matrix.node-version }}
cache: "npm"
- name: Run yarn install
uses: borales/actions-yarn@v4
with:
cmd: install --frozen-lockfile
- name: Run lint
uses: borales/actions-yarn@v4
with:
cmd: run lint
- name: Run build
uses: borales/actions-yarn@v4
with:
cmd: build
- name: Run test
uses: borales/actions-yarn@v4
with:
cmd: test