Skip to content

feat: add bitgo api interaction, setup functions to use for transacti… #1

feat: add bitgo api interaction, setup functions to use for transacti…

feat: add bitgo api interaction, setup functions to use for transacti… #1

Workflow file for this run

# @format
name: Code Checks
on:
merge_group:
push:
branches:
- '**'
jobs:
lint-eslint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: ./.github/actions/provision
- name: Lint
run: yarn lint:eslint
lint-prettier:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: ./.github/actions/provision
- name: Prettier
run: yarn lint:prettier
lint-unused-exports:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: ./.github/actions/provision
- name: Unused Exports
run: yarn lint:unused-exports
typecheck:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: ./.github/actions/provision
- name: Typecheck
run: yarn typecheck
lint-commit:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Commit Message
uses: wagoid/commitlint-github-action@v4