From 80179062dbb32e69233e46c3f62bcd4df3e079c5 Mon Sep 17 00:00:00 2001 From: Faruk AYDIN Date: Mon, 8 Jan 2024 16:15:47 +0100 Subject: [PATCH] feat: Add sample encryption key to CI step --- .github/workflows/ci.yml | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 0e53fa51..12702b8a 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -39,7 +39,11 @@ jobs: - run: echo "💡 The ${{ github.repository }} repository has been cloned to the runner." - run: echo "🖥️ The workflow is now ready to test your code on the runner." - run: yarn --frozen-lockfile && yarn lerna bootstrap - - run: cd packages/backend && yarn start + - run: yarn --frozen-lockfile && yarn lerna bootstrap + - run: cd packages/backend + - run: yarn start + env: + ENCRYPTION_KEY: sample_encryption_key - run: echo "🍏 This job's status is ${{ job.status }}." build-web: runs-on: ubuntu-latest