[CP Staging] Revert "Left line/border of quoted text is not visible when hovering over it in Notes" #12008
Workflow file for this run
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: TypeScript Checks | |
on: | |
workflow_call: | |
pull_request: | |
types: [opened, synchronize] | |
branches-ignore: [staging, production] | |
paths: ['**.ts', '**.tsx', 'package.json', 'package-lock.json', 'tsconfig.json'] | |
jobs: | |
typecheck: | |
if: ${{ github.actor != 'OSBotify' || github.event_name == 'workflow_call' }} | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: Expensify/App/.github/actions/composite/setupNode@main | |
- name: Type check with TypeScript | |
run: npm run typecheck | |
env: | |
CI: true |