Skip to content

Remove unused libraries #215

Remove unused libraries

Remove unused libraries #215

Workflow file for this run

# This workflow will do a clean installation of node dependencies and run unit-tests with code-coverage
# For more information see: https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-nodejs
name: UnitTestsWithCodeCoverage
on:
push:
branches: [ "develop" ]
pull_request:
branches: [ "develop" ]
types: [opened, synchronize, reopened, auto_merge_enabled]
permissions:
pull-requests: read
jobs:
unitTests:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [20.x]
steps:
- uses: actions/checkout@v4
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node_version }}
- name: npm install and test
run: |
npm install
npm test