-
Notifications
You must be signed in to change notification settings - Fork 113
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #37 from crypti/v8.0.0
v7.0.0
- Loading branch information
Showing
7 changed files
with
12,953 additions
and
12,407 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 |
---|---|---|
@@ -1,10 +1,10 @@ | ||
<!-- | ||
<!-- | ||
WAIT! Are you requesting a change to a specific cryptocurrency? | ||
If yes, keep in mind that this list is generated automatically from the data on the cryptocompare API (via https://www.cryptocompare.com) so if you are requesting that a change be made to a specific currency, then the change would need to be made upstream on the cryptocpmare API. To do this, you would need to contact the support team at crytocompare (Visit https://www.cryptocompare.com | ||
If yes, keep in mind that this list is generated automatically from the data on the cryptocompare API (via https://www.cryptocompare.com) so if you are requesting that a change be made to a specific currency, then the change would need to be made upstream on the cryptocompare API. To do this, you would need to contact the support team at cryptocompare (Visit https://www.cryptocompare.com | ||
and click on the 'Contact us' link in the footer). | ||
But if the change you need is already on the crytocompare API and not on this list, then you can submit a PR after you run `npm run build` to ensure that the current list is up-to-date. Or open an issue with a request to update the list. | ||
But if the change you need is already on the cryptocompare API and not on this list, then you can submit a PR after you run `npm run build` to ensure that the current list is up-to-date, or open an issue with a request to update the list. | ||
--> |
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 |
---|---|---|
@@ -1,9 +1,9 @@ | ||
<!-- | ||
<!-- | ||
|
||
WAIT! If you are attempting to submit a PR that makes a manual change to currency. Please don't. | ||
|
||
This list is generated automatically from the data on the cryptocompare API (via https://www.cryptocompare.com) so if you are requesting that a change be made to a specific currency, then the change would need to be made upstream on the cryptocpmare API. To do this, you would need to contact the support team at crytocompare (Visit https://www.cryptocompare.com | ||
This list is generated automatically from the data on the cryptocompare API (via https://www.cryptocompare.com) so if you are requesting that a change be made to a specific currency, then the change would need to be made upstream on the cryptocompare API. To do this, you would need to contact the support team at cryptocompare (Visit https://www.cryptocompare.com | ||
and click on the 'Contact us' link in the footer). Once the data is on the API, then you can submit a PR after running `npm run build` to ensure that the current list is up-to-date. | ||
|
||
If you submit a PR with a manual edit to any specific currency, it will be closed, because any manual changes you make would be overwritten the next time the list is generated, this is why the data needs to be on the API, because that is our single source of truth for this list. | ||
If you submit a PR with a manual edit to any specific currency, it will be closed, because any manual changes you make would be overwritten the next time the list is auto-generated, this is why the data needs to be on the API, because that is our single source of truth for this list. | ||
--> |
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,20 @@ | ||
name: CI | ||
on: | ||
- push | ||
- pull_request | ||
jobs: | ||
test: | ||
name: Node.js ${{ matrix.node-version }} | ||
runs-on: ubuntu-latest | ||
strategy: | ||
fail-fast: false | ||
matrix: | ||
node-version: | ||
- 20 | ||
steps: | ||
- uses: actions/checkout@v4 | ||
- uses: actions/setup-node@v4 | ||
with: | ||
node-version: ${{ matrix.node-version }} | ||
- run: npm install | ||
- run: npm test |
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.