Skip to content

Commit 16f1a60

Browse files
authored
chore: run test coverage on GH actions (#12393)
1 parent 49f217c commit 16f1a60

File tree

5 files changed

+52
-85
lines changed

5 files changed

+52
-85
lines changed

.circleci/config.yml

+3-19
Original file line numberDiff line numberDiff line change
@@ -19,26 +19,15 @@ jobs:
1919
parameters:
2020
node-version:
2121
type: string
22-
partial:
23-
type: boolean
24-
default: false
2522
working_directory: ~/jest
2623
executor: node/default
2724
steps:
2825
- checkout
2926
- node/install:
3027
node-version: << parameters.node-version >>
3128
- node/install-packages: *install
32-
- when:
33-
condition: << parameters.partial >>
34-
steps:
35-
- run:
36-
command: yarn test-ci-partial
37-
- unless:
38-
condition: << parameters.partial >>
39-
steps:
40-
- run:
41-
command: yarn test-ci
29+
- run:
30+
command: yarn test-ci-partial
4231
- store_test_results:
4332
path: reports/junit
4433

@@ -59,14 +48,9 @@ jobs:
5948
workflows:
6049
build-and-deploy:
6150
jobs:
62-
- test-node:
63-
matrix:
64-
parameters:
65-
node-version: ['lts/*']
6651
- test-node:
6752
name: test-node-partial-<< matrix.node-version >>
68-
partial: true
6953
matrix:
7054
parameters:
71-
node-version: ['12', '14', '17']
55+
node-version: ['12', '14', '16', '17']
7256
- test-jest-jasmine

.codecov.yml

+13
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
codecov:
2+
require_ci_to_pass: false
3+
4+
comment: false
5+
6+
coverage:
7+
status:
8+
patch:
9+
default:
10+
target: auto
11+
project:
12+
default:
13+
target: auto

.github/workflows/nodejs.yml

+31
Original file line numberDiff line numberDiff line change
@@ -133,3 +133,34 @@ jobs:
133133
uses: SimenB/github-actions-cpu-cores@v1
134134
- name: run tests using jest-jasmine
135135
run: yarn jest-jasmine-ci --max-workers ${{ steps.cpu-cores.outputs.count }}
136+
137+
test-coverage:
138+
name: Node LTS on Ubuntu with coverage
139+
runs-on: ubuntu-latest
140+
needs: prepare-yarn-cache
141+
142+
steps:
143+
- uses: actions/checkout@v2
144+
- name: Use Node.js LTS
145+
uses: actions/setup-node@v2
146+
with:
147+
node-version: lts/*
148+
cache: yarn
149+
- name: install
150+
run: yarn --immutable
151+
- name: build
152+
run: yarn build:js
153+
- name: Get number of CPU cores
154+
id: cpu-cores
155+
uses: SimenB/github-actions-cpu-cores@v1
156+
- name: run tests with coverage
157+
run: |
158+
yarn jest-coverage --color --config jest.config.ci.js --max-workers ${{ steps.cpu-cores.outputs.count }}
159+
yarn test-leak
160+
- name: map coverage
161+
run: node ./scripts/mapCoverage.js
162+
if: always()
163+
- uses: codecov/codecov-action@v2
164+
if: always()
165+
with:
166+
directory: ./coverage

package.json

+1-3
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,6 @@
2929
"camelcase": "^6.2.0",
3030
"chalk": "^4.0.0",
3131
"chokidar": "^3.3.0",
32-
"codecov": "^3.0.0",
3332
"debug": "^4.0.1",
3433
"dedent": "^0.7.0",
3534
"eslint": "^8.8.0",
@@ -104,11 +103,10 @@
104103
"lint:prettier:ci": "prettier '**/*.{md,yml,yaml}' 'website/**/*.{css,js}' --check --ignore-path .gitignore",
105104
"remove-examples": "node ./scripts/remove-examples.js",
106105
"test-types": "yarn jest --config jest.config.tsd.js",
107-
"test-ci": "yarn jest-coverage --color -i --config jest.config.ci.js && yarn test-leak && node ./scripts/mapCoverage.js && codecov",
108106
"test-ci-partial": "yarn test-ci-partial:parallel -i",
109107
"test-ci-partial:parallel": "yarn jest --color --config jest.config.ci.js",
110108
"test-pretty-format-perf": "node packages/pretty-format/perf/test.js",
111-
"test-leak": "yarn jest -i --detectLeaks jest-mock jest-diff jest-repl pretty-format",
109+
"test-leak": "yarn jest -i --detectLeaks --color jest-mock jest-diff jest-repl pretty-format",
112110
"test": "yarn lint && yarn jest",
113111
"verify-old-ts": "node ./scripts/verifyOldTs.js",
114112
"verify-pnp": "node ./scripts/verifyPnP.js",

yarn.lock

+4-63
Original file line numberDiff line numberDiff line change
@@ -2647,7 +2647,6 @@ __metadata:
26472647
camelcase: ^6.2.0
26482648
chalk: ^4.0.0
26492649
chokidar: ^3.3.0
2650-
codecov: ^3.0.0
26512650
debug: ^4.0.1
26522651
dedent: ^0.7.0
26532652
eslint: ^8.8.0
@@ -6268,13 +6267,6 @@ __metadata:
62686267
languageName: node
62696268
linkType: hard
62706269

6271-
"argv@npm:0.0.2":
6272-
version: 0.0.2
6273-
resolution: "argv@npm:0.0.2"
6274-
checksum: e703f1af475dfd35f4065c21d7324368e3a9f1b5ff63d49c11fd442155aa0fd4f8498b57b535947fac86b79e1c9913cf0324300cbddbdc0af92fcf62eac0f5d2
6275-
languageName: node
6276-
linkType: hard
6277-
62786270
"aria-query@npm:^5.0.0":
62796271
version: 5.0.0
62806272
resolution: "aria-query@npm:5.0.0"
@@ -7702,21 +7694,6 @@ __metadata:
77027694
languageName: node
77037695
linkType: hard
77047696

7705-
"codecov@npm:^3.0.0":
7706-
version: 3.8.2
7707-
resolution: "codecov@npm:3.8.2"
7708-
dependencies:
7709-
argv: 0.0.2
7710-
ignore-walk: 3.0.3
7711-
js-yaml: 3.14.1
7712-
teeny-request: 7.0.1
7713-
urlgrey: 0.4.4
7714-
bin:
7715-
codecov: bin/codecov
7716-
checksum: a70fdf2e83dace9018747781e63a564c935784ab62df966eebe7f6bacfd004a6f8b0c271fc9814fea21726e118501c35a05d65c74770b0573760c96e5dfa04d9
7717-
languageName: node
7718-
linkType: hard
7719-
77207697
"collapse-white-space@npm:^1.0.2":
77217698
version: 1.0.6
77227699
resolution: "collapse-white-space@npm:1.0.6"
@@ -11845,7 +11822,7 @@ __metadata:
1184511822
languageName: node
1184611823
linkType: hard
1184711824

11848-
"http-proxy-agent@npm:^4.0.0, http-proxy-agent@npm:^4.0.1":
11825+
"http-proxy-agent@npm:^4.0.1":
1184911826
version: 4.0.1
1185011827
resolution: "http-proxy-agent@npm:4.0.1"
1185111828
dependencies:
@@ -11974,7 +11951,7 @@ __metadata:
1197411951
languageName: node
1197511952
linkType: hard
1197611953

11977-
"ignore-walk@npm:3.0.3, ignore-walk@npm:^3.0.3":
11954+
"ignore-walk@npm:^3.0.3":
1197811955
version: 3.0.3
1197911956
resolution: "ignore-walk@npm:3.0.3"
1198011957
dependencies:
@@ -13746,7 +13723,7 @@ __metadata:
1374613723
languageName: node
1374713724
linkType: hard
1374813725

13749-
"js-yaml@npm:3.14.1, js-yaml@npm:^3.13.1":
13726+
"js-yaml@npm:^3.13.1":
1375013727
version: 3.14.1
1375113728
resolution: "js-yaml@npm:3.14.1"
1375213729
dependencies:
@@ -20548,15 +20525,6 @@ __metadata:
2054820525
languageName: node
2054920526
linkType: hard
2055020527

20551-
"stream-events@npm:^1.0.5":
20552-
version: 1.0.5
20553-
resolution: "stream-events@npm:1.0.5"
20554-
dependencies:
20555-
stubs: ^3.0.0
20556-
checksum: 969ce82e34bfbef5734629cc06f9d7f3705a9ceb8fcd6a526332f9159f1f8bbfdb1a453f3ced0b728083454f7706adbbe8428bceb788a0287ca48ba2642dc3fc
20557-
languageName: node
20558-
linkType: hard
20559-
2056020528
"strict-uri-encode@npm:^2.0.0":
2056120529
version: 2.0.0
2056220530
resolution: "strict-uri-encode@npm:2.0.0"
@@ -20803,13 +20771,6 @@ __metadata:
2080320771
languageName: node
2080420772
linkType: hard
2080520773

20806-
"stubs@npm:^3.0.0":
20807-
version: 3.0.0
20808-
resolution: "stubs@npm:3.0.0"
20809-
checksum: dec7b82186e3743317616235c59bfb53284acc312cb9f4c3e97e2205c67a5c158b0ca89db5927e52351582e90a2672822eeaec9db396e23e56893d2a8676e024
20810-
languageName: node
20811-
linkType: hard
20812-
2081320774
"style-to-object@npm:0.3.0, style-to-object@npm:^0.3.0":
2081420775
version: 0.3.0
2081520776
resolution: "style-to-object@npm:0.3.0"
@@ -20969,19 +20930,6 @@ __metadata:
2096920930
languageName: node
2097020931
linkType: hard
2097120932

20972-
"teeny-request@npm:7.0.1":
20973-
version: 7.0.1
20974-
resolution: "teeny-request@npm:7.0.1"
20975-
dependencies:
20976-
http-proxy-agent: ^4.0.0
20977-
https-proxy-agent: ^5.0.0
20978-
node-fetch: ^2.6.1
20979-
stream-events: ^1.0.5
20980-
uuid: ^8.0.0
20981-
checksum: 8eba49422edc141cff2c4a4c2bc39c78d92b6a9ce0fbf1a9edd0d3a57b830f719a1030a5681c2890a7d222c7ebcb74b7a8c29b37ad7b124d34be728cacfd128b
20982-
languageName: node
20983-
linkType: hard
20984-
2098520933
"temp-dir@npm:^1.0.0":
2098620934
version: 1.0.0
2098720935
resolution: "temp-dir@npm:1.0.0"
@@ -22087,13 +22035,6 @@ __metadata:
2208722035
languageName: node
2208822036
linkType: hard
2208922037

22090-
"urlgrey@npm:0.4.4":
22091-
version: 0.4.4
22092-
resolution: "urlgrey@npm:0.4.4"
22093-
checksum: db5884ffca497430eb99fcf7bd88402ff3647c1ba7b5687c595d3af884afc198399301ec181582501ff61074d9bf342ad12825eb11aa020bc6aeae7bc815a04c
22094-
languageName: node
22095-
linkType: hard
22096-
2209722038
"use-composed-ref@npm:^1.0.0":
2209822039
version: 1.2.1
2209922040
resolution: "use-composed-ref@npm:1.2.1"
@@ -22193,7 +22134,7 @@ __metadata:
2219322134
languageName: node
2219422135
linkType: hard
2219522136

22196-
"uuid@npm:^8.0.0, uuid@npm:^8.3.1, uuid@npm:^8.3.2":
22137+
"uuid@npm:^8.3.1, uuid@npm:^8.3.2":
2219722138
version: 8.3.2
2219822139
resolution: "uuid@npm:8.3.2"
2219922140
bin:

0 commit comments

Comments
 (0)