Skip to content

Commit

Permalink
github: use litd staging branch for itests
Browse files Browse the repository at this point in the history
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).
  • Loading branch information
guggero committed Sep 5, 2024
1 parent 553fa54 commit 6f4d65f
Showing 1 changed file with 8 additions and 2 deletions.
10 changes: 8 additions & 2 deletions .github/workflows/main.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,8 @@ env:
GOPATH: /home/runner/work/go

GO_VERSION: '1.22.3'

LITD_ITEST_BRANCH: '0-19-staging'

jobs:
#######################
Expand Down Expand Up @@ -306,7 +308,11 @@ jobs:
uses: ./.github/actions/setup-go

- name: Clone Lit repository
run: git clone https://github.com/lightninglabs/lightning-terminal.git
uses: actions/checkout@v3
with:
repository: lightninglabs/lightning-terminal
ref: ${{ env.LITD_ITEST_BRANCH }}
path: lightning-terminal

- name: Update go.mod to use the local Tap repository
working-directory: ./lightning-terminal
Expand All @@ -316,7 +322,7 @@ jobs:
- name: Install yarn
run: npm install -g yarn

- name: setup nodejs
uses: ./lightning-terminal/.github/actions/setup-node
with:
Expand Down

0 comments on commit 6f4d65f

Please sign in to comment.