Skip to content

Commit

Permalink
Fix workflow (#121)
Browse files Browse the repository at this point in the history
* run on PR

* fix tests

* format
  • Loading branch information
markonmars authored Nov 15, 2024
1 parent 3e54d8d commit 77cd7c9
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 4 deletions.
3 changes: 1 addition & 2 deletions .github/workflows/scripts.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,7 @@ on:
branches:
- main
- perps
pull_request:

pull_request:

jobs:
coverage:
Expand Down
4 changes: 2 additions & 2 deletions src/rover/ActionGenerator.ts
Original file line number Diff line number Diff line change
Expand Up @@ -96,15 +96,15 @@ export class ActionGenerator {
),
]
: []
// const refundAll = this.produceRefundAllAction()
const refundAll = this.produceRefundAllAction()

const actions = [
...borrowActions,
liquidateAction,
...collateralToDebtActions,
...repayMsg,
...swapToStableMsg,
// refundAll,
refundAll,
]
if (process.env.DEBUG) {
actions.forEach((action) => console.log(JSON.stringify(action)))
Expand Down

0 comments on commit 77cd7c9

Please sign in to comment.