Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: haqq-network/haqq-wallet-provider-ledger-react-native
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: v0.0.8
Choose a base ref
...
head repository: haqq-network/haqq-wallet-provider-ledger-react-native
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: main
Choose a head ref
Loading
49 changes: 49 additions & 0 deletions .github/workflows/ci-green.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,49 @@
name: CI green

on:
push:
branches: [main]
pull_request:
branches: [main]
merge_group:
types: [checks_requested]

concurrency:
group: ${{ github.ref }}
cancel-in-progress: true

env:
NODE_VERSION: '16.17.1'

jobs:
test:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3.0.2
- name: Setup node
uses: actions/setup-node@v3.4.1
with:
node-version: ${{ env.NODE_VERSION }}
cache: yarn
- uses: actions/cache@v2
with:
path: '**/node_modules'
key: ${{ runner.os }}-modules-${{ hashFiles('**/yarn.lock') }}
- name: Install dependencies
run: yarn install --frozen-lockfile
- name: Run linters
run: |
yarn lint
yarn typescript:check
yarn prettier:check
yarn test
ci-pass:
name: CI is green
runs-on: ubuntu-latest
needs:
- test

steps:
- run: exit 0
5 changes: 5 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
# Provider for ledger react-native

Provider for working with ledger

[docs](https://github.com/haqq-network/haqq-wallet-provider-ledger-react-native/blob/main/docs/modules.md)
1 change: 1 addition & 0 deletions docs/.nojekyll
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
TypeDoc added this file to prevent GitHub Pages from using Jekyll. You can turn off this behavior by setting the `githubPages` option to false.
7 changes: 7 additions & 0 deletions docs/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
@haqq/provider-ledger-react-native - v0.0.18 / [Exports](modules.md)

# Provider for ledger react-native

Provider for working with ledger

[docs](https://github.com/haqq-network/haqq-wallet-provider-ledger-react-native/blob/main/docs/modules.md)
Loading