Connectors: Implement socket bridge connector #186
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: Connectors CI | |
env: | |
CI: true | |
on: | |
push: | |
branches: "*" | |
paths: | |
- packages/connectors/** | |
pull_request: | |
branches: "*" | |
paths: | |
- packages/connectors/** | |
jobs: | |
lint: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
- name: Set up environment | |
uses: ./.github/actions/setup | |
- name: Lint | |
run: yarn workspace @mimic-fi/v3-connectors lint | |
test: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
- name: Set up environment | |
uses: ./.github/actions/setup | |
- name: Build | |
run: yarn build | |
- name: Test | |
run: yarn workspace @mimic-fi/v3-connectors test |