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

build(deps): bump minimatch from 3.0.4 to 3.1.2 #17

build(deps): bump minimatch from 3.0.4 to 3.1.2

build(deps): bump minimatch from 3.0.4 to 3.1.2 #17

Workflow file for this run

name: Build Workflow
"on":
push:
branches:
- master
pull_request:
branches:
- master
jobs:
Build:
runs-on: "${{ matrix.os }}"
strategy:
matrix:
os:
- ubuntu-20.04
node-version:
- 16.x
steps:
- name: "Set up Node.js ${{ matrix.node-version }}"
uses: actions/setup-node@v1
with:
node-version: "${{ matrix.node-version }}"
- uses: actions/checkout@v2
- name: "Install dependencies"
run: "npm ci"
- name: "Build package"
run: "npm run release:build"
- name: "Coverage Report"
run: |
npm run coverage:report
npm run coverage:html
npm run coverage:codecov
- name: Upload coverage to Codecov
uses: codecov/codecov-action@v2
with:
directory: ./coverage/
fail_ci_if_error: true
verbose: true