diff --git a/.gitea/workflows/deploy-dev.yaml b/.gitea/workflows/deploy-dev.yaml index c59b209..79e143a 100644 --- a/.gitea/workflows/deploy-dev.yaml +++ b/.gitea/workflows/deploy-dev.yaml @@ -45,3 +45,11 @@ jobs: run: | find . -type f -name "*.ts" -exec sed -i "s/#{SERVICES_RGN}#/${{ vars.SERVICES_RGN }}/g" {} + cat functions/src/email/sendEmail.ts + - name: Build + run: | + npm install -g typescript + cd functions + npm install + npx tsc + cd .. + ls -la