feature: add new TS client lib to repo #1942
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: search test suite | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.head_ref }} | |
cancel-in-progress: true | |
on: | |
pull_request: | |
paths: | |
- "frontends/search/**" | |
- "frontends/shared/**" | |
- "frontends/config/**" | |
- "clients/ts-sdk/**" | |
jobs: | |
build-test: | |
runs-on: blacksmith-2vcpu-ubuntu-2204 | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Install dependencies | |
run: yarn --frozen-lockfile | |
- name: Running lint | |
run: yarn build --filter search | |
eslint: | |
runs-on: blacksmith-2vcpu-ubuntu-2204 | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Install dependencies | |
run: yarn --frozen-lockfile | |
- name: Running lint | |
run: yarn lint:CI --filter search | |
- name: Annotate Code Linting Results | |
uses: ataylorme/[email protected] | |
if: always() | |
with: | |
repo-token: "${{ secrets.GITHUB_TOKEN }}" | |
report-json: "./frontends/search/eslint_report.json" |