274 feature azure document intelligence as a segmentation model #272
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: Typescript SDK test suite | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.head_ref }} | |
cancel-in-progress: true | |
on: pull_request | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Installing pnpm | |
run: npm i -g pnpm | |
- name: Install dependencies | |
run: pnpm i | |
- name: Running Build | |
run: pnpm build | |
lint: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Installing pnpm | |
run: npm i -g pnpm | |
- name: Install dependencies | |
run: pnpm i | |
- name: Running lint | |
run: pnpm lint |