Author SHA1 Message Date
shreerang d8d165a5da Test lint CI
Lint and Build / Run lint and build checks (push) Successful in 3m49s
2025-12-29 14:35:20 +05:30
shreerang 7bcd6fa1a0 Update lint and build workflow
Lint and Build / Run lint and build checks (pull_request) Successful in 3m45s
2025-12-29 14:01:28 +05:30
prathamesh 40118f53f6 Revert "Add lint and build github workflow"
/ Run lint and build checks (pull_request) Successful in 3m37s
This reverts commit c4aa6a8494.
2025-12-26 10:26:52 +05:30
pranav a612d43f97 Update gitea lint CI to trigger on push to main branch
/ Run lint and build checks (pull_request) Successful in 3m49s
2025-12-23 16:58:09 +05:30
AdityaSalunkhe21 c4aa6a8494 Add lint and build github workflow 2025-12-23 16:58:09 +05:30
nabarunandpranav 770f96603b Resolve warnings in react app build (#10)
Publish wallet docker image on release / Run docker build and publish (release) Successful in 7m15s
Part of https://plan.wireit.in/deepstack/browse/VUL-251/

Co-authored-by: Pranav <jadhavpranav89@gmail.com>
Reviewed-on: #10
2025-10-07 13:42:26 +00:00
shreerangandpranav cc47ba4636 Remove testnet reference (#8)
Co-authored-by: Pranav <jadhavpranav89@gmail.com>
Reviewed-on: #8
Co-authored-by: shreerang <shreerang@noreply.git.vdb.to>
Co-committed-by: shreerang <shreerang@noreply.git.vdb.to>
2025-09-26 05:34:12 +00:00
4 changed files with 25 additions and 7 deletions
+8 -5
View File
@@ -3,17 +3,20 @@ name: Lint and Build
on:
pull_request:
branches: [ main ]
push:
# branches: [ main ]
jobs:
lint-and-build:
name: Run lint and build checks
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v2
uses: actions/checkout@v4
- name: Setup Node.js
uses: actions/setup-node@v3
uses: actions/setup-node@v4
with:
node-version: '22'
@@ -22,9 +25,9 @@ jobs:
- name: Install dependencies
run: yarn install --frozen-lockfile
- name: Run ESLint
run: yarn lint
- name: Run build
run: yarn build
+15
View File
@@ -54,5 +54,20 @@ module.exports = function override(config, env) {
config.resolve.alias['react-native$'] = require.resolve('react-native-web');
// Ignore source map warnings from third-party packages. Ref: https://github.com/facebook/create-react-app/discussions/11767#discussioncomment-3416044
const ignoreSourceMapPackages = [
'@cosmjs',
'@confio/ics23',
'@json-rpc-tools',
'@pedrouid/environment',
'@walletconnect',
'cosmjs-types',
];
config.ignoreWarnings = ignoreSourceMapPackages.map(pkg => ({
module: new RegExp(`node_modules/${pkg.replace('/', '\\/')}`),
message: /Failed to parse source map/,
}));
return config;
};
+1 -1
View File
@@ -1,6 +1,6 @@
{
"name": "web-wallet",
"version": "0.1.7-zenith-0.2.2",
"version": "0.1.7-zenith-0.2.3",
"private": true,
"dependencies": {
"@laconic-network/cosmjs-util": "^0.1.0",
+1 -1
View File
@@ -38,5 +38,5 @@ export const COSMOS_SIGNING_METHODS = {
export const COSMOS_METHODS = {
...COSMOS_SIGNING_METHODS,
COSMOS_SEND_TOKENS: 'cosmos_sendTokens', // Added for pay.laconic.com
COSMOS_SEND_TRANSACTION: 'cosmos_sendTransaction', // Added for testnet onboarding app
COSMOS_SEND_TRANSACTION: 'cosmos_sendTransaction', // Added for onboarding app
};