From c815dbca41ed2b930933091129949e8dd5c4d409 Mon Sep 17 00:00:00 2001 From: Vishnu Narayanan Date: Wed, 5 Jun 2024 18:09:29 +0530 Subject: [PATCH] debug --- .github/workflows/nightly_installer.yml | 16 ++++++++++++++-- 1 file changed, 14 insertions(+), 2 deletions(-) diff --git a/.github/workflows/nightly_installer.yml b/.github/workflows/nightly_installer.yml index 99986fa14..6ab000baa 100644 --- a/.github/workflows/nightly_installer.yml +++ b/.github/workflows/nightly_installer.yml @@ -27,10 +27,14 @@ jobs: uses: actions/setup-node@v4 with: node-version: '20' - - name: create input file + - name: check node version run: | node --version which node + - name: check yarn version + run: | + yarn --version + which yarn - name: get installer run: | wget https://get.chatwoot.app/linux/install.sh @@ -58,7 +62,15 @@ jobs: # sudo systemctl restart chatwoot.target # curl http://localhost:3000/api - + - name: check node/yarn inside chatwoot + run: | + sudo -iu chatwoot + cd chatwoot + node --version + yarn --versio + yarn + exit + if: always() - name: Upload chatwoot setup log file as an artifact uses: actions/upload-artifact@v4