Skip to content
This repository has been archived by the owner on Apr 4, 2024. It is now read-only.

Bump minimatch from 3.0.4 to 3.1.2 #51

Bump minimatch from 3.0.4 to 3.1.2

Bump minimatch from 3.0.4 to 3.1.2 #51

Workflow file for this run

name: CI
on:
push:
branches: [ master ]
pull_request:
# Allows you to run this workflow manually from the Actions tab
workflow_dispatch:
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
# Set node version
- uses: actions/setup-node@v2
with:
node-version: '12.14.1'
- name: Set NPM 7
run: npm install -g npm@7.6.3
# Cache node_modules
- uses: actions/cache@v2
env:
cache-name: cache-node-modules
with:
path: '**/node_modules'
key: ${{ runner.os }}-modules-${{ hashFiles('**/package-lock.json') }}
- name: Install node modules
run: npm install
- name: Lint
run: npm run lint -- --max-warnings 0
- name: Run tests
run: npm run test