build(deps-dev): bump @vitejs/plugin-react from 4.3.2 to 4.3.3 in /coral #2394
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
# ℹ️ | |
# 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@11bd71901bbe5b1630ceea73d27597364c9af683 #v4.2.2 | |
with: | |
persist-credentials: false | |
- name: Setup coral | |
uses: ./.github/actions/setup-coral | |
- name: Run tsc | |
working-directory: ./coral | |
run: pnpm tsc |