Skip to content

Bump minimist from 1.2.5 to 1.2.8 (#384) #98

Bump minimist from 1.2.5 to 1.2.8 (#384)

Bump minimist from 1.2.5 to 1.2.8 (#384) #98

Workflow file for this run

name: CI
on:
push:
branches: [main]
pull_request_target:
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node: ["12", "14", "16"]
steps:
- uses: actions/checkout@v2
- uses: actions/cache@v2
with:
path: "**/node_modules"
key: ${{ runner.os }}-modules-${{ hashFiles('**/yarn.lock') }}
- name: Install modules
run: yarn
- name: Setup node
uses: actions/setup-node@v1
with:
node-version: ${{ matrix.node }}
- name: Run tests
run: yarn test