diff --git a/.env.test b/.env.test index f6bb75c..951afcc 100644 --- a/.env.test +++ b/.env.test @@ -1,5 +1,5 @@ AUTH_SECRET="auth_secret" -AUTH_URL="http://localhost:3000" +AUTH_URL="http://127.0.0.1:3000" HOSTNAME="127.0.0.1" DATABASE_URL="file:./dev.db" AUTH_AUTHENTIK_ISSUER="auth_issuer" \ No newline at end of file diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index 9906596..b441a80 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -22,7 +22,7 @@ jobs: - name: Cypress run (e2e) uses: https://github.com/cypress-io/github-action@v6 with: - build: yarn run build + build: yarn cypress:build start: yarn cypress:start_server e2e: true wait-on: 'http://127.0.0.1:3000' @@ -30,6 +30,6 @@ jobs: - name: Cypress run (component) uses: https://github.com/cypress-io/github-action@v6 with: - build: yarn run build + build: yarn cypress:build start: yarn cypress:start_server component: true