Use breez liquid sdk #101
This file contains 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: '[CI] React Native' | |
on: | |
push: | |
branches: | |
- main | |
pull_request: | |
branches: | |
- main | |
# `workflow_dispatch` allows to run the workflow manually | |
# when selecting it in the `Actions tab` | |
workflow_dispatch: | |
jobs: | |
ci: | |
runs-on: macos-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Install dependencies | |
run: | | |
set -euxo pipefail | |
yarn install --frozen-lockfile | |
- name: Run eslint | |
run: | | |
set -euxo pipefail | |
yarn lint |