From 91a0a840dff928fcccbf89243b79fbdce5992cb4 Mon Sep 17 00:00:00 2001 From: Luke Vella Date: Wed, 21 Aug 2024 18:03:21 +0100 Subject: [PATCH] =?UTF-8?q?=F0=9F=90=9B=20Fix=20integration=20tests=20(#12?= =?UTF-8?q?65)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Luke Vella --- .github/workflows/ci.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 08d954ccc..61fcbf14b 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -51,7 +51,6 @@ jobs: runs-on: ubuntu-latest env: DATABASE_URL: postgresql://postgres:postgres@localhost:5450/rallly - STRIPE_SECRET_KEY: ${{ secrets.STRIPE_SECRET_KEY }} steps: - uses: actions/checkout@v4 - uses: ./.github/actions/setup-node @@ -66,6 +65,8 @@ jobs: - name: Create production build run: yarn turbo build:test --filter=@rallly/web + env: + STRIPE_SECRET_KEY: ${{ secrets.STRIPE_SECRET_KEY }} - name: Start services run: yarn docker:up