これまで遭遇したエラーについて簡単にまとめていく。
今回は、

AWSへのデプロイ時のエラー

前提条件

Capistranoを使用したデプロイでのエラー

遭遇したエラー(一部抜粋)

SSHKit::Runner::ExecuteError: Exception while executing as app@54.95.187.140: rake exit status: 1
rake stdout: Nothing written
rake stderr: Yarn executable was not detected in the system.
Download Yarn at https://yarnpkg.com/en/docs/install

解決法

EC2上にyarnをインストールする

EC2にログインする

ルートユーザーでログイン

$ sudo su -

yarnインストールの準備

$ $ yum -y install wget
$ wget https://dl.yarnpkg.com/rpm/yarn.repo -O /etc/yum.repos.d/yarn.repo
$ curl --silent --location https://rpm.nodesource.com/setup_6.x | bash -

yarnのインストール

$ yum install yarn

インストールの確認

$ yarn --version

以上で終了