Skip to content

build(deps-dev): bump vite from 4.5.2 to 5.2.10 in /coral #1979

build(deps-dev): bump vite from 4.5.2 to 5.2.10 in /coral

build(deps-dev): bump vite from 4.5.2 to 5.2.10 in /coral #1979

# ℹ️
# 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@9bb56186c3b09b4f86b1c65136769dd318469633 #v4.1.2
with:
persist-credentials: false
- name: Setup coral
uses: ./.github/actions/setup-coral
- name: Run tsc
working-directory: ./coral
run: pnpm tsc