Skip to content

Commit

Permalink
feat: added develop CI #38
Browse files Browse the repository at this point in the history
  • Loading branch information
scx1332 committed Apr 12, 2024
1 parent bd71c79 commit 1ad9743
Show file tree
Hide file tree
Showing 4 changed files with 20 additions and 2 deletions.
18 changes: 18 additions & 0 deletions .github/workflows/development.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
#Location: .github/workflows/custom_config.yml

name: Build and push containers to Github Container Registry and apply rolling update
on:
push:
branches:
- develop

jobs:
build:
runs-on: deposit-development
steps:
- uses: actions/checkout@v4
with:
submodules: "recursive"

- name: Where am I
run: pwd
1 change: 1 addition & 0 deletions backend/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@
"main": "index.ts",
"scripts": {
"dev": "concurrently -k \"tsc -w\" \"nodemon --env-file=.env.local ./dist/index.js\"",
"devscx": "tsc && node --env-file=.env.local ./dist/index.js",
"build": "tsc",
"start": "node ./dist/index.js"
},
Expand Down
1 change: 0 additions & 1 deletion backend/src/services/yagna/service.ts
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,6 @@ export class Yagna {
}

async observeDebitNoteEvents() {
return;
debugLog("payments", "observing events");
while (this.isRunning) {
debugLog(
Expand Down
2 changes: 1 addition & 1 deletion frontend/src/config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ export const config: Config<[typeof holesky]> = {
[holesky.id]: "0x8888888815bf4db87e57b609a50f938311eed068",
},
requestorWalletAddress: {
[holesky.id]: "0x047b7a753dfd1e6f9e64e24e1d8450e55887e892",
[holesky.id]: "0xc6b6818d452e4c821d32423677092316a6b705e7",
},
minimalAllowance: parseEther("50"),
};

0 comments on commit 1ad9743

Please sign in to comment.