Skip to content

fix(deps): update dependency dotenv to v16.4.4 #1708

fix(deps): update dependency dotenv to v16.4.4

fix(deps): update dependency dotenv to v16.4.4 #1708

Workflow file for this run

# This workflow will do a clean install of node dependencies, build the source code and run tests across different versions of node
# For more information see: https://help.github.com/actions/language-and-framework-guides/using-nodejs-with-github-actions
name: CI
on: [push]
jobs:
build:
name: CI
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [14.x]
steps:
- uses: actions/checkout@v3
with:
fetch-depth: 0 # 馃憟 Required to retrieve git history
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
- name: Install project dependencies
run: npm install
- name: Check
run: npm run check
- name: Generate coverage
run: npm run check:test:coverage
- name: Upload coverage
uses: codecov/codecov-action@v3
with:
fail_ci_if_error: true