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
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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 |