Skip to content

Commit

Permalink
first attempt
Browse files Browse the repository at this point in the history
  • Loading branch information
SidSethi committed May 27, 2022
1 parent 8f9fe4c commit 1d90bb6
Show file tree
Hide file tree
Showing 4 changed files with 34 additions and 5 deletions.
5 changes: 3 additions & 2 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -340,8 +340,9 @@ jobs:
export redisPort=6379
export spOwnerWallet='yes'
export isCIBuild=true
npm run test:unit
npm run test:ci
npm run test:coverage:ci
- coveralls/upload:
path_to_lcov: ./creator-node/coverage/lcov.info

test-discovery-provider:
docker:
Expand Down
2 changes: 2 additions & 0 deletions creator-node/README.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
[![Coverage Status](https://coveralls.io/repos/github/AudiusProject/audius-protocol/badge.svg)](https://coveralls.io/github/AudiusProject/audius-protocol)

An Audius Content Node (previously known as Creator Node) maintains the availability of content on Audius's decentralized network. The information stored includes Audius user metadata, images, and audio content. The content is backed by either aws S3 or a local directory.

To blacklist content on an already running node:
Expand Down
25 changes: 25 additions & 0 deletions creator-node/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

7 changes: 4 additions & 3 deletions creator-node/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,8 @@
"test:local:teardown": "./scripts/run-tests.sh standalone_creator teardown",
"test:teardown": "./scripts/run-tests.sh teardown",
"test:unit": "./scripts/run-tests.sh unit_test",
"coverage": "nyc npm run test",
"report": "nyc report --reporter=html",
"test:coverage": "nyc --reporter=lcov --reporter=text npm run test",
"test:coverage:ci": "nyc --reporter=lcov npm run test:ci && nyc report --reporter=text-lcov | coveralls",
"lint:fix": "eslint --fix --ext=js,ts src",
"lint": "eslint --ext=js,ts src"
},
Expand Down Expand Up @@ -74,6 +74,7 @@
"@typescript-eslint/parser": "^5.5.0",
"chai": "4.3.6",
"chai-as-promised": "^7.1.1",
"coveralls": "3.1.1",
"eslint": "^7.32.0",
"eslint-config-standard": "^16.0.3",
"eslint-plugin-import": "^2.25.3",
Expand All @@ -83,7 +84,7 @@
"mocha": "^5.2.0",
"nock": "^13.1.0",
"nodemon": "^1.19.4",
"nyc": "^15.0.0",
"nyc": "15.1.0",
"prettier": "^2.5.1",
"proxyquire": "^2.1.3",
"sequelize-cli": "^5.3.0",
Expand Down

0 comments on commit 1d90bb6

Please sign in to comment.