MENU

React.js ✖️ Azure Web Apps でDeployする

やりたいこと

ReactをAzure Static Web Apps(静的webアプリ)でDeployしたいが、困ったことがあるので、備忘録とエラー処理について記述します。
GitHub Actions:Treating warnings as errors because process.env.CI = true. というエラーの対処法です。

やったこと

ReactとAzureの環境構築まで

下記のリンクの、1,2,3を実施します。
https://aadojo.alterbooth.com/entry/2022/09/09/170000

【GitHub Actions】Treating warnings as errors because process.env.CI = true.エラー対処法

GitHub Actionsのworkflowsファイルへ以下のように追記と書かれている2行を追記します。
steps:
    - uses: actions/checkout@v2
      with:
          submodules: true
      - name: Build And Deploy
        env: # ←追記
            CI: false # ←追記(既にある場合はfalseへ変更します)
        id: builddeploy

参考

https://aadojo.alterbooth.com/entry/2022/09/09/170000

https://oooomincrypto.hatenadiary.jp/entry/2022/09/04/164915
よかったらシェアしてね!
  • URLをコピーしました!
  • URLをコピーしました!

この記事を書いた人

コメント

コメントする

目次