Skip to content

Bump picomatch from 2.2.2 to 2.3.2 #26

Bump picomatch from 2.2.2 to 2.3.2

Bump picomatch from 2.2.2 to 2.3.2 #26

Workflow file for this run

name: Build
on: [push, pull_request]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node-version:
- 14.x
- 16.x
steps:
- uses: actions/checkout@v1
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v1
with:
node-version: ${{ matrix.node-version }}
- name: Install
run: |
yarn install \
--non-interactive \
--frozen-lockfile
- name: Test
run: yarn test
env:
CI: true