Skip to content

Merge pull request #884 from f5devcentral/dependabot/npm_and_yarn/spa… #471

Merge pull request #884 from f5devcentral/dependabot/npm_and_yarn/spa…

Merge pull request #884 from f5devcentral/dependabot/npm_and_yarn/spa… #471

Workflow file for this run

name: Test Coverage
"on":
push:
branches: ["main"]
jobs:
tests:
name: "${{ matrix.subproject }} subproject test on Node.js v${{ matrix.node }}"
runs-on: ubuntu-latest
strategy:
matrix:
subproject:
- api
- inventory
- recommendations
- checkout
- spa
node:
- 18
steps:
- uses: actions/setup-node@v3
with:
node-version: "${{ matrix.node }}"
- name: Checkout
uses: actions/checkout@v3
- name: "Cache node_modules"
uses: actions/cache@v3
with:
path: ~/.npm
key: ${{ matrix.subproject }}-${{ runner.os }}-node-v${{ matrix.node }}-${{ hashFiles('**/package-lock.json') }}
restore-keys: |
${{ matrix.subproject }}-${{ runner.os }}-node-v${{ matrix.node }}-
- name: Install Dependencies
run: cd ${{ matrix.subproject }} && npm install
- name: Run All Node.js Test Coverage Tasks
run: cd ${{ matrix.subproject }} && npm run test:coverage
- name: Coveralls Parallel
uses: coverallsapp/github-action@master
with:
path-to-lcov: ./${{ matrix.subproject }}/coverage/lcov.info
base-path: ./${{ matrix.subproject }}
github-token: ${{ secrets.github_token }}
flag-name: run-${{ matrix.subproject }}
parallel: true
finish:
needs: tests
runs-on: ubuntu-latest
steps:
- name: Coveralls Finished
uses: coverallsapp/github-action@master
with:
github-token: ${{ secrets.github_token }}
parallel-finished: true