Skip to content

Update dependency inquirer to v9.3.0 #1978

Update dependency inquirer to v9.3.0

Update dependency inquirer to v9.3.0 #1978

Workflow file for this run

name: Publish Coverage
# Run this action at every commit on every branch
on: [push]
jobs:
run:
runs-on: ubuntu-latest
steps:
- name: Check out repository code
uses: actions/checkout@v3
- name: Prepare NodeJS environment
uses: actions/setup-node@v3
with:
node-version: 14.x
- name: Cache npm dependencies
uses: actions/[email protected]
with:
path: '~/.npm'
key: ${{ runner.os }}-node-${{ hashFiles('**/package-lock.json') }}
restore-keys: |
${{ runner.os }}-node-
# Install dependencies, than run tests and create coverage report
- name: Generate coverage report
run: |
npm install
npm run coverage
- name: Upload coverage to Codecov
uses: codecov/[email protected]
with:
token: ${{ secrets.CODECOV_TOKEN }}
directory: ./coverage
name: codecov-umbrella