Skip to content

Commit 6f4d65f

Browse files
committed
github: use litd staging branch for itests
We actually want to run the litd itests on the staging branch that has the custom channel tests. We also can speed up the tests by removing the yarn build for the static files, since we don't need those for the tests (an empty index.html just needs to exist for the build to succeed).
1 parent 553fa54 commit 6f4d65f

File tree

1 file changed

+8
-2
lines changed

1 file changed

+8
-2
lines changed

.github/workflows/main.yaml

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,8 @@ env:
2020
GOPATH: /home/runner/work/go
2121

2222
GO_VERSION: '1.22.3'
23+
24+
LITD_ITEST_BRANCH: '0-19-staging'
2325

2426
jobs:
2527
#######################
@@ -306,7 +308,11 @@ jobs:
306308
uses: ./.github/actions/setup-go
307309

308310
- name: Clone Lit repository
309-
run: git clone https://github.com/lightninglabs/lightning-terminal.git
311+
uses: actions/checkout@v3
312+
with:
313+
repository: lightninglabs/lightning-terminal
314+
ref: ${{ env.LITD_ITEST_BRANCH }}
315+
path: lightning-terminal
310316

311317
- name: Update go.mod to use the local Tap repository
312318
working-directory: ./lightning-terminal
@@ -316,7 +322,7 @@ jobs:
316322
317323
- name: Install yarn
318324
run: npm install -g yarn
319-
325+
320326
- name: setup nodejs
321327
uses: ./lightning-terminal/.github/actions/setup-node
322328
with:

0 commit comments

Comments
 (0)