From 64db238c0cc771325668d3a56dea908adc025e7a Mon Sep 17 00:00:00 2001 From: Matej Jellus Date: Sat, 14 Sep 2024 16:02:38 +0200 Subject: [PATCH] Add missing env variables for run tests step --- .github/workflows/main.yml | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index dc918a9..63eaac5 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -68,6 +68,11 @@ jobs: yarn run seed - name: Run tests env: + DATABASE_HOST: "127.0.0.1" + DATABASE_NAME: quotes + DATABASE_USER: quotes + DATABASE_PASSWORD: p4ssw0rd + DATABASE_PORT: ${{ job.services.mariadb.ports[3306] }} TOKEN: ${{ secrets.CODECOV_TOKEN }} run: | yarn test