From cf7b7d7d3d116a4b1d7e519ac5ed217d7624e050 Mon Sep 17 00:00:00 2001 From: Leo Giovanetti Date: Fri, 16 Sep 2022 12:27:44 -0300 Subject: [PATCH] Fixing forget password link in login (#4526) * Fixing forget password link in login * Showing heap info Co-authored-by: Bailey Pumfleet --- .github/workflows/check-types.yml | 7 +++++++ apps/web/pages/v2/auth/login.tsx | 2 +- 2 files changed, 8 insertions(+), 1 deletion(-) diff --git a/.github/workflows/check-types.yml b/.github/workflows/check-types.yml index ebb3260d94..bb7a348182 100644 --- a/.github/workflows/check-types.yml +++ b/.github/workflows/check-types.yml @@ -8,6 +8,8 @@ on: concurrency: group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }} cancel-in-progress: true +env: + NODE_OPTIONS: "--max-old-space-size=8192" jobs: check-types: runs-on: ubuntu-latest @@ -20,8 +22,13 @@ jobs: - name: Use Node 16.x uses: actions/setup-node@v3 + with: node-version: 16.x cache: "yarn" + + - name: Show info + run: node -e "console.log(require('v8').getHeapStatistics())" + - run: yarn --frozen-lockfile - run: yarn type-check diff --git a/apps/web/pages/v2/auth/login.tsx b/apps/web/pages/v2/auth/login.tsx index f56db78daf..590bab077e 100644 --- a/apps/web/pages/v2/auth/login.tsx +++ b/apps/web/pages/v2/auth/login.tsx @@ -140,7 +140,7 @@ export default function Login({ {...form.register("email")} />
-
+
{t("forgot")}