Skip to content

feat(coral) - Add form for Add new clusters feature #1818

feat(coral) - Add form for Add new clusters feature

feat(coral) - Add form for Add new clusters feature #1818

# ℹ️
# This workflow runs for pull_requests that are based on main
# if there is a change in coral, including file `coral/types/api.d.ts`
# - 1. it runs the coral setup
# - 2. it runs the typescript compiler
# - if ok: ends the workflow ✅
# - if tsc has errors: fails the workflow ⛔️
# This workflow ensures that our type definition for APIs are always in
# sync and that API changes don't break things in coral.
name: Typescript checks
on:
pull_request:
paths:
- 'coral/**'
jobs:
typecheck:
name: Type check
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 #v4.1.1
with:
persist-credentials: false
- name: Setup coral
uses: ./.github/actions/setup-coral
- name: Run tsc
working-directory: ./coral
run: pnpm tsc