Skip to content

Bump micromatch from 4.0.5 to 4.0.8 #9

Bump micromatch from 4.0.5 to 4.0.8

Bump micromatch from 4.0.5 to 4.0.8 #9

Workflow file for this run

name: Run Tests on Push and Pull Request
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Setup Node.js
uses: actions/setup-node@v2
with:
node-version: "20"
- name: Install Dependencies
run: yarn install
- name: Run Tests
run: yarn test
working-directory: "./"