Skip to content

Updated dependencies to fix lodash.get and lodash.set CVE's #38

Updated dependencies to fix lodash.get and lodash.set CVE's

Updated dependencies to fix lodash.get and lodash.set CVE's #38

Workflow file for this run

name: Node.js CI
on: [push]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [14.x, 16.x, 18.x, 20.x]
steps:
- uses: actions/checkout@v3
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
- uses: actions/cache@v3
with:
path: ~/.npm
key: ${{ runner.os }}-${{ matrix.node-version }}-node-${{ hashFiles('**/package-lock.json') }}
restore-keys: |
${{ runner.os }}-node-
- name: Setup timezone
uses: zcong1993/[email protected]
with:
timezone: Europe/Amsterdam
- run: npm install
- run: npm run lint
- run: npm run test:ts
- run: npm run test:coverage
- run: npm run tsc
env:
CI: true
- name: Upload coverage to Codecov
uses: codecov/codecov-action@v3
with:
directory: ./coverage
flags: unittests
name: codecov-umbrella
fail_ci_if_error: true
path_to_write_report: ./coverage/codecov_report.txt
verbose: true