feat: sync SDK to OpenAPI doc v2.11.0 #159
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: Pull Request Checks | |
on: | |
pull_request: | |
branches: [master] | |
jobs: | |
lint: | |
name: "Lint, Build and Test" | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-node@v4 | |
- name: Installing dependencies | |
run: yarn install --frozen-lockfile | |
- name: Prettier check | |
run: yarn run format-check | |
- name: Running ESLint | |
run: yarn lint | |
- name: Build check | |
run: yarn build | |
- name: Running unit test's | |
run: yarn test | |
scan: | |
needs: lint | |
uses: circlefin/circle-public-github-workflows/.github/workflows/pr-scan.yaml@v1 |