Skip to content

Commit a8cab16

Browse files
chore: don't upload code coverage as GHA artifacts (#1241)
## PR Checklist - [x] Addresses an existing open issue: fixes #1225 - [x] That issue was marked as [`status: accepting prs`](https://github.com/JoshuaKGoldberg/create-typescript-app/issues?q=is%3Aopen+is%3Aissue+label%3A%22status%3A+accepting+prs%22) - [x] Steps in [CONTRIBUTING.md](https://github.com/JoshuaKGoldberg/create-typescript-app/blob/main/.github/CONTRIBUTING.md) were taken ## Overview Removes the offending lines.
1 parent c63b465 commit a8cab16

File tree

5 files changed

+0
-27
lines changed

5 files changed

+0
-27
lines changed

.github/workflows/test-create.yml

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -12,11 +12,6 @@ jobs:
1212
with:
1313
files: coverage-create/lcov.info
1414
flags: create
15-
- if: always()
16-
name: Archive code coverage results
17-
uses: actions/upload-artifact@v4
18-
with:
19-
path: coverage-create
2015

2116
name: Test Creation Script
2217

.github/workflows/test-initialize.yml

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -16,11 +16,6 @@ jobs:
1616
with:
1717
files: coverage-initialize/lcov.info
1818
flags: initialize
19-
- if: always()
20-
name: Archive code coverage results
21-
uses: actions/upload-artifact@v4
22-
with:
23-
path: coverage-initialize
2419

2520
name: Test Initialization Script
2621

.github/workflows/test-migrate.yml

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -16,11 +16,6 @@ jobs:
1616
with:
1717
files: coverage-migrate/lcov.info
1818
flags: migrate
19-
- if: always()
20-
name: Archive code coverage results
21-
uses: actions/upload-artifact@v4
22-
with:
23-
path: coverage-migrate
2419

2520
name: Test Migration Script
2621

.github/workflows/test.yml

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -9,12 +9,6 @@ jobs:
99
uses: codecov/codecov-action@v3
1010
with:
1111
flags: unit
12-
- if: always()
13-
name: Archive code coverage results
14-
uses: actions/upload-artifact@v4
15-
with:
16-
name: code-coverage-report
17-
path: coverage
1812

1913
name: Test
2014

script/__snapshots__/migrate-test-e2e.js.snap

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -59,12 +59,6 @@ exports[`expected file changes > .github/workflows/test.yml 1`] = `
5959
uses: codecov/codecov-action@v3
6060
- with:
6161
- flags: unit
62-
- - if: always()
63-
- name: Archive code coverage results
64-
- uses: actions/upload-artifact@v4
65-
- with:
66-
- name: code-coverage-report
67-
- path: coverage
6862
6963
name: Test
7064
"

0 commit comments

Comments
 (0)