Skip to content

Commit

Permalink
ci: Speed Up Code Coverage Github Actions Jobs (#9988)
Browse files Browse the repository at this point in the history
* only build code needed to run the unit tests

* Added changeset: Speed up code coverage Github Actions jobs by skipping Cloud Manager build

---------

Co-authored-by: Banks Nussman <banks@nussman.us>
  • Loading branch information
bnussman-akamai and bnussman authored Dec 12, 2023
1 parent 0ad0937 commit 645284c
Show file tree
Hide file tree
Showing 3 changed files with 20 additions and 6 deletions.
14 changes: 10 additions & 4 deletions .github/workflows/coverage.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,8 +25,11 @@ jobs:
- name: Install Dependencies
run: yarn --frozen-lockfile

- name: Run build
run: yarn build
- name: Build @linode/validation
run: yarn build:validation

- name: Build @linode/api-v4
run: yarn build:sdk

- name: Run Base Branch Coverage
run: yarn coverage:summary
Expand Down Expand Up @@ -65,8 +68,11 @@ jobs:
- name: Install Dependencies
run: yarn --frozen-lockfile

- name: Run Build
run: yarn build
- name: Build @linode/validation
run: yarn build:validation

- name: Build @linode/api-v4
run: yarn build:sdk

- name: Run Current Branch Coverage
run: yarn coverage:summary
Expand Down
7 changes: 5 additions & 2 deletions .github/workflows/coverage_badge.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,8 +27,11 @@ jobs:
- name: Install Dependencies
run: yarn --frozen-lockfile

- name: Run Build
run: yarn build
- name: Build @linode/validation
run: yarn build:validation

- name: Build @linode/api-v4
run: yarn build:sdk

- name: Run Base Branch Coverage
run: yarn coverage:summary
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
---
"@linode/manager": Tech Stories
---

Speed up code coverage Github Actions jobs by skipping Cloud Manager build ([#9988](https://github.com/linode/manager/pull/9988))

0 comments on commit 645284c

Please sign in to comment.