github: set CI=false on verify-addons GH action

Summary:
The verify-addons GH action is currently the only red signal.

  Treating warnings as errors because process.env.CI = true.
  Most CI servers set it automatically.

  Failed to compile.

  [eslint]
  src/CommandHistoryAndProgress.tsx
    Line 9:14:  'CommandArg' is defined but never used  typescript-eslint/no-unused-vars

  src/CommitInfoView/CommitInfoView.tsx
    Line 68:3:  'anyEditsMade' is defined but never used  typescript-eslint/no-unused-vars

  src/CommitInfoView/GenerateWithAI.tsx
    Line 23:3:  'editedCommitMessages' is defined but never used  typescript-eslint/no-unused-vars

Attempt to fix it by setting CI to false.

Reviewed By: zzl0

Differential Revision: D51434914

fbshipit-source-id: 63a28763ae09281ceede7d17173c2cf7505f3ad5
This commit is contained in:
Jun Wu 2023-11-17 13:58:02 -08:00 committed by Facebook GitHub Bot
parent aac8c2fba2
commit 0a2759ca3f

View File

@ -1,4 +1,7 @@
name: Verify addons/ folder
env:
CI: false
on:
# Run on any branch to support ghstack's synthetic base/head branches.
pull_request: