Skip to content

Commit 7be418f

Browse files
committed
build(ci): parallelism
1 parent c722938 commit 7be418f

File tree

2 files changed

+11
-4
lines changed

2 files changed

+11
-4
lines changed

.circleci/config.yml

+7-3
Original file line numberDiff line numberDiff line change
@@ -73,6 +73,7 @@ jobs:
7373
- coverage-reporter/send_report:
7474
coverage-reports: './coverage/lcov.info'
7575
project-token: $CODACY_PROJECT_TOKEN
76+
parallelism: 4
7677
build_production:
7778
docker:
7879
- image: circleci/node:16-stretch
@@ -87,9 +88,12 @@ jobs:
8788
- run:
8889
name: Run Tests
8990
command: yarn run test
90-
# - run:
91-
# name: Run Codacy
92-
# command: yarn run codacy
91+
- run:
92+
name: Run Codacy
93+
command: yarn run coverage
94+
- coverage-reporter/send_report:
95+
coverage-reports: './coverage/lcov.info'
96+
project-token: $CODACY_PROJECT_TOKEN
9397
- run:
9498
name: Semantic Release
9599
command: npx semantic-release

.codacy.yml

+4-1
Original file line numberDiff line numberDiff line change
@@ -10,4 +10,7 @@ exclude_paths:
1010
- src/public/js/vendor/**/*
1111
- public/**
1212
- public/**/*
13-
- test/**/*
13+
- test/**/*
14+
- .github/**
15+
- CHANGELOG.md
16+
- README.md

0 commit comments

Comments
 (0)