add .env file to checks workflow (#508)

* add .env file to checks workflow

* update .env.example comment
This commit is contained in:
Matti Nannt
2023-07-10 10:59:17 +02:00
committed by GitHub
parent 31ccb9d43f
commit fe55a152ea
2 changed files with 5 additions and 1 deletions

View File

@@ -46,7 +46,8 @@ NEXTAUTH_URL=http://localhost:3000
MAIL_FROM=noreply@example.com
SMTP_HOST=localhost
SMTP_PORT=1025
SMTP_SECURE_ENABLED=0 # Enable for TLS (port 465)
# Enable SMTP_SECURE_ENABLED for TLS (port 465)
SMTP_SECURE_ENABLED=0
SMTP_USER=smtpUser
SMTP_PASSWORD=smtpPassword

View File

@@ -27,6 +27,9 @@ jobs:
- name: Build formbricks-js dependencies
run: pnpm build --filter=js
- name: create .env
run: cp .env.example .env
- name: Lint
run: pnpm lint