feat: add CLN backend #4137
Workflow file for this run
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: Code quality - linting and typechecking | |
| on: | |
| push: | |
| branches: | |
| - master | |
| pull_request: | |
| types: [opened, synchronize] | |
| jobs: | |
| linting: | |
| runs-on: ubuntu-22.04 | |
| defaults: | |
| run: | |
| working-directory: ./frontend | |
| steps: | |
| - uses: actions/checkout@v3 | |
| - uses: actions/setup-node@v3 | |
| with: | |
| node-version: 20.x | |
| cache: "yarn" | |
| cache-dependency-path: frontend/yarn.lock | |
| - run: yarn install | |
| - run: yarn prepare:http | |
| - name: Linting | |
| run: yarn lint:js | |
| - name: Prettier | |
| run: yarn format | |
| - name: Typechecking | |
| run: yarn tsc:compile |