feat: [M3-7128] - Coverage Report - Part 1 #24
Workflow file for this run
This file contains 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: Code Coverage Summary Report | |
on: [pull_request] | |
jobs: | |
code_coverage_report: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
# with: | |
# ref: ${{ github.base_ref }} # The base branch of the PR (develop) | |
- name: Use Node.js v18.14.0 | |
uses: actions/setup-node@v3 | |
with: | |
node-version: "18.14" | |
- name: Install dependencies | |
run: yarn | |
- name: Run test coverage | |
run: yarn workspace linode-manager run test |