From 164f60c3b3fe5c43a031bc4799f9904e7fa157ba Mon Sep 17 00:00:00 2001 From: Matias Poblete <86752543+MattPoblete@users.noreply.github.com> Date: Tue, 10 Sep 2024 11:22:06 -0300 Subject: [PATCH] =?UTF-8?q?=F0=9F=A9=B9Fix=20order=20and=20typos?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .github/workflows/run-tests.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.github/workflows/run-tests.yml b/.github/workflows/run-tests.yml index 96efc88b..c484d09d 100644 --- a/.github/workflows/run-tests.yml +++ b/.github/workflows/run-tests.yml @@ -27,7 +27,7 @@ jobs: - name: Build app run: yarn build - deploy_app: + deploy-app: env: NEXT_PUBLIC_BACKEND_URL: ${{vars.NEXT_PUBLIC_BACKEND_URL}} NEXT_PUBLIC_SOROSWAP_BACKEND_API_KEY: ${{secrets.NEXT_PUBLIC_SOROSWAP_BACKEND_API_KEY}} @@ -37,6 +37,7 @@ jobs: NEXT_PUBLIC_TRUSTLINE_WALLET_PUBLIC_KEY: ${{vars.NEXT_PUBLIC_TRUSTLINE_WALLET_PUBLIC_KEY}} NEXT_PUBLIC_TEST_TOKENS_ADMIN_SECRET_KEY: ${{secrets.NEXT_PUBLIC_TEST_TOKENS_ADMIN_SECRET_KEY}} runs-on: ubuntu-latest + needs: build steps: - uses: actions/checkout@v4.1.1 @@ -49,6 +50,7 @@ jobs: run-tests: runs-on: ubuntu-latest + needs: deploy-app steps: - uses: actions/checkout@v4.1.1