-
Notifications
You must be signed in to change notification settings - Fork 104
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
9001066
commit b6bc8ca
Showing
7 changed files
with
7,771 additions
and
0 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
version: 2.1 | ||
executors: | ||
node-executor: | ||
docker: | ||
- image: circleci/node:14.4.0 | ||
working_directory: ~/app | ||
|
||
jobs: | ||
test: | ||
executor: node-executor | ||
steps: | ||
- checkout | ||
- run: yarn install --non-interactive | ||
- run: yarn danger ci --failOnErrors --id @brainhubeu/react-carousel | ||
workflows: | ||
version: 2 | ||
build_and_test: | ||
jobs: | ||
- test |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
const licenseAuditor = require('@brainhubeu/license-auditor'); | ||
|
||
const whitelist = require('./license/whitelist'); | ||
const blacklist = require('./license/blacklist'); | ||
|
||
licenseAuditor({ | ||
whitelistedLicenses: whitelist, | ||
blacklistedLicenses: blacklist, | ||
projectPath: `.`, | ||
ciManager: { | ||
warn, | ||
fail, | ||
}, | ||
}); |
Oops, something went wrong.