Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
18 changes: 18 additions & 0 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
name: Test
on: [pull_request]
jobs:
test:
runs-on: ubuntu-latest
steps:
- name: Checkout the latest code
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
- name: Setup Node
uses: actions/setup-node@39370e3970a6d050c480ffad4ff0ed4d3fdee5af # v4.1.0
with:
node-version: 18
- name: Install dependencies
run: npm install --ignore-scripts
- name: Generate client config
run: node -r sucrase/register src/bin/configure.ts
- name: Run tests
run: npm test
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,10 @@

## Unreleased

- added: CI job that runs the mocha test suite on every pull request
- added: Add Revolut fiat payment provider
- added: Add Swapter reporting
- added: Add NYM Swap (nymswap) reporting
- changed: Update sideshift plugin with new optional API fields
- changed: Query both old and new Sideshift affiliate accounts and merge completed orders to preserve full shift history across an affiliate-account rotation
- changed: Add signature header support to Exolix
Expand All @@ -11,6 +15,7 @@
- changed: Use rates V3 for transactions with pluginId/tokenId
- fixed: Moonpay by adding Revolut payment type
- fixed: Use v2 rates API
- fixed: Repair the broken mocha test suite (correct util.test.ts import and stale analytics fixtures) so npm test passes

## 0.2.0

Expand Down
12 changes: 12 additions & 0 deletions src/demo/partners.ts
Original file line number Diff line number Diff line change
Expand Up @@ -97,6 +97,10 @@ export default {
type: 'fiat',
color: '#7214F5'
},
nymswap: {
type: 'swap',
color: '#FB6E4E'
},
paybis: {
type: 'fiat',
color: '#FFB400'
Expand All @@ -109,6 +113,10 @@ export default {
type: 'swap',
color: '#5891EE'
},
revolut: {
type: 'fiat',
color: '#191C33'
},
Comment thread
cursor[bot] marked this conversation as resolved.
safello: {
type: 'fiat',
color: deprecated
Expand All @@ -121,6 +129,10 @@ export default {
type: 'swap',
color: '#E35852'
},
swapter: {
type: 'swap',
color: '#00C9A7'
},
swapuz: {
type: 'swap',
color: '#56BD7C'
Expand Down
Loading
Loading