Skip to content
This repository was archived by the owner on Mar 24, 2025. It is now read-only.

Commit c87c825

Browse files
authored
feat: Enable Here wallet (#272)
1 parent e0f2d72 commit c87c825

File tree

12 files changed

+235
-93
lines changed

12 files changed

+235
-93
lines changed

.github/workflows/branch-publish.yml

+3-2
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
name: Push & Publish
1+
name: Push & Publish (branch)
22

33
on:
44
push
@@ -66,6 +66,7 @@ jobs:
6666
# only run these remaining steps on non-alpha pushes
6767
- name: Publish Preview Version (non default branch)
6868
if: ${{ github.ref_name != 'alpha'}}
69+
id: publish
6970
run: |
7071
lerna version prerelease --yes --skip-git --preid ${{ github.ref_name }}-${GITHUB_SHA::7}
7172
git add --all
@@ -82,7 +83,7 @@ jobs:
8283
deployment-id: ${{ steps.deployment.outputs.deployment_id }}
8384

8485
- name: Update deployment status (failure)
85-
if: failure() && ${{ github.ref_name != 'alpha'}}
86+
if: job.steps.publish.status != 'success' && ${{ github.ref_name != 'alpha'}}
8687
uses: chrnorm/deployment-status@v2
8788
with:
8889
token: '${{ github.token }}'

jest.config.js

+1
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@ module.exports = {
1010
testTimeout: 60000,
1111
moduleNameMapper: {
1212
'@near-wallet-selector/meteor-wallet': '<rootDir>/jest.stub.js',
13+
'@here-wallet/core/build/strategy': '<rootDir>/jest.stub.js',
1314
},
1415
setupFilesAfterEnv: ['../../jest.setup.tsx'],
1516
};

0 commit comments

Comments
 (0)