Skip to content

fix(lnurl-withdraw): support self-custodial vouchers end-to-end #7992

fix(lnurl-withdraw): support self-custodial vouchers end-to-end

fix(lnurl-withdraw): support self-custodial vouchers end-to-end #7992

Workflow file for this run

name: "Test"
on:
pull_request:
branches: [main]
jobs:
check-code:
name: Tests
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version-file: .nvmrc
- run: yarn install
# Flake handling happens at test granularity now: jest retries individual
# failing tests in CI (see jest.setup-after-env.ts) and logs each retried
# error, instead of silently re-running the whole job.
- run: yarn test
timeout-minutes: 20