Skip to content

build(deps-dev): bump minimist from 1.2.5 to 1.2.8 #23

build(deps-dev): bump minimist from 1.2.5 to 1.2.8

build(deps-dev): bump minimist from 1.2.5 to 1.2.8 #23

Workflow file for this run

name: test
on:
push:
jobs:
build:
runs-on: ubuntu-20.04
strategy:
matrix:
node-version: [12, 14, 16]
steps:
- uses: actions/checkout@v2
- uses: pnpm/[email protected]
with:
version: 6.20.3
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v2
with:
node-version: ${{ matrix.node-version }}
cache: 'pnpm'
- name: Install dependencies
run: pnpm install --frozen-lockfile
- name: Lint
run: pnpm lint
- name: Test
run: pnpm test