Skip to content
This repository was archived by the owner on May 3, 2026. It is now read-only.

Merge pull request #137 from BrantaOps/keith-gardner-patch-1 #199

Merge pull request #137 from BrantaOps/keith-gardner-patch-1

Merge pull request #137 from BrantaOps/keith-gardner-patch-1 #199

Workflow file for this run

name: "Continuous Integration"
on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main", "develop" ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Install modules
run: npm i
- name: Run tests
run: npm run test -- --coverage
- name: audit
run: npm audit --audit-level=critical
- name: lint
run: npm run lint
- name: check for unused dependencies
continue-on-error: true
run: npx depcheck