diff --git a/.env.test b/.env.test index 4e566a0..996599e 100644 --- a/.env.test +++ b/.env.test @@ -1,4 +1,5 @@ AUTH_SECRET="auth_secret" AUTH_URL="http://localhost:3000" +HOSTNAME=0.0.0.0 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 49271e8..085d927 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -33,9 +33,3 @@ jobs: build: yarn run build start: yarn cypress:start_server component: true - - - name: Clean up Docker - if: always() - run: | - docker system prune -af --filter "until=24h" - docker volume prune -f diff --git a/package.json b/package.json index b6b9548..4e881dc 100644 --- a/package.json +++ b/package.json @@ -8,7 +8,7 @@ "start": "node .next/standalone/server.js", "lint": "next lint", "format": "prettier --write .", - "cypress:start_server": "cp .next/static/ .next/standalone/.next/ -r && dotenv -e .env.test -- node .next/standalone/server.js", + "cypress:start_server": "cp public .next/standalone/ -r && cp .next/static/ .next/standalone/.next/ -r && dotenv -e .env.test -- node .next/standalone/server.js", "cypress:open": "cypress open", "cypress:run": "cypress run" },