feat(send): add unified onchain/lightning switch #3352
Workflow file for this run
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: type-check | |
on: | |
workflow_dispatch: | |
pull_request: | |
jobs: | |
typescript: | |
name: Run type check | |
runs-on: ubuntu-latest | |
steps: | |
- name: Check out Git repository | |
uses: actions/checkout@v4 | |
with: | |
fetch-depth: 1 | |
- name: Set up Node.js | |
uses: actions/setup-node@v4 | |
with: | |
node-version: 20 | |
- name: Configure npm authentication | |
run: | | |
echo "" >> .yarnrc.yml | |
echo "npmScopes:" >> .yarnrc.yml | |
echo " synonymdev:" >> .yarnrc.yml | |
echo ' npmAuthToken: "${{ secrets.NPMJS_READ_RN_PUBKY }}"' >> .yarnrc.yml | |
- name: Install Node.js dependencies | |
run: yarn install || yarn install | |
- name: Type check | |
run: yarn tsc:check |