Migrated user's reports follow Classic approval workflow instead of New Expensify workflow #40398
Workflow file for this run
This file contains hidden or 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: React Compiler Compliance Check | |
| on: | |
| workflow_call: | |
| pull_request: | |
| types: [opened, synchronize] | |
| branches-ignore: [staging, production] | |
| paths: ['**.ts', '**.tsx'] | |
| concurrency: | |
| group: ${{ github.ref == 'refs/heads/main' && format('{0}-{1}', github.ref, github.sha) || github.ref }}-react-compiler-compliance | |
| cancel-in-progress: true | |
| jobs: | |
| react-compiler-compliance: | |
| name: React Compiler Compliance | |
| if: ${{ github.actor != 'OSBotify' }} | |
| runs-on: blacksmith-4vcpu-ubuntu-2404 | |
| steps: | |
| - name: Checkout | |
| uses: useblacksmith/checkout@1c9394c220d293645707b625ba9d79685f093a8f # v1 | |
| - name: Setup Node | |
| uses: ./.github/actions/composite/setupNode | |
| - name: Run React Compiler Compliance Check | |
| run: npm run react-compiler-compliance-check check-changed | |
| env: | |
| CI: true | |
| GITHUB_TOKEN: ${{ github.token }} |