Skip to content

feat(LICENSE): Add file #8

feat(LICENSE): Add file

feat(LICENSE): Add file #8

Workflow file for this run

name: Run Tests with Coverage
on:
push:
branches:
- master
- develop
pull_request:
branches:
- develop
jobs:
test:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v2
- name: Set up Node.js
uses: actions/setup-node@v2
with:
node-version: '>=19'
- name: Install dependencies
run: npm install --legacy-peer-deps
- name: Run linter
run: npm run lint
- name: Run tests with coverage
run: npm run test:cov