Skip to content

Bump micromatch from 4.0.4 to 4.0.8 #95

Bump micromatch from 4.0.4 to 4.0.8

Bump micromatch from 4.0.4 to 4.0.8 #95

Workflow file for this run

name: Continuous integration
on: pull_request
jobs:
ci:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Cache the node_modules dir
uses: actions/cache@v2
with:
path: node_modules
key: ${{ runner.os }}-node_modules-${{ hashFiles('yarn.lock') }}
- name: Install
run: yarn install --frozen-lockfile
- name: Build
run: yarn build-prod
- name: Test
run: yarn test