Skip to content

Merge pull request #2736 from Arize-ai/2733-fix-qa #10

Merge pull request #2736 from Arize-ai/2733-fix-qa

Merge pull request #2736 from Arize-ai/2733-fix-qa #10

Workflow file for this run

name: Typescript CI
on:
push:
branches: [main]
pull_request:
paths:
- "app/**"
# Allows you to run this workflow manually from the Actions tab
workflow_dispatch:
concurrency:
group: test-typescript-${{ github.head_ref }}
cancel-in-progress: true
jobs:
ci:
name: CI Typescript
runs-on: ubuntu-latest
steps:
- name: Checkout Repository
uses: actions/checkout@v3
- name: Install PNPM
uses: pnpm/action-setup@v3
with:
version: 8
- name: Install dependencies
working-directory: ./app
run: pnpm install --frozen-lockfile
- name: Type Check
working-directory: ./app
run: pnpm run typecheck
- name: Formatting
working-directory: ./app
run: |
pnpm run prettier:check
- name: Lint
working-directory: ./app
run: |
pnpm run lint
- name: Relay Codegen
working-directory: ./app
run: |
pnpm run build:relay
git diff --exit-code
- name: Test
working-directory: ./app
run: |
pnpm run test