ci: added commit lint, build check, test and release (#31)

* ci: added commit lint, build check, test and release

* refactor: fix compilation errors

* ci: add checkout to the tests

* test: resolved issues with running tests

* chore: addressed PR comments

* chore: renamed package-name in release-please
This commit is contained in:
Vojtech Simetka
2021-03-31 15:33:09 +02:00
committed by GitHub
parent 325a59098e
commit 7fc1356212
15 changed files with 23036 additions and 166 deletions
+3 -3
View File
@@ -261,7 +261,7 @@ export const useApiPeerLastCheque = (peerId: string) => {
.finally(() => {
setLoading(false)
})
}, [])
}, [peerId])
return { peerCheque, isLoadingPeerCheque, error };
}
@@ -306,7 +306,7 @@ export const useApiPingPeer = (peerId: string) => {
.finally(() => {
setPingingPeer(false)
})
}, [])
}, [peerId])
return { peerRTP, isPingingPeer, error };
}
@@ -328,7 +328,7 @@ export const useApiPeerLastCashout = (peerId: string) => {
.finally(() => {
setLoading(false)
})
}, [])
}, [peerId])
return { peerCashout, isLoadingPeerCashout, error };
}