From 1d2620304ffaa9365573d3ff14a864d8e00a29c9 Mon Sep 17 00:00:00 2001 From: itsMapleLeaf <19603573+itsMapleLeaf@users.noreply.github.com> Date: Sat, 6 Aug 2022 01:30:23 -0500 Subject: [PATCH] work around actions cache skipping cypress install --- .github/workflows/main.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 688509a..d6e9dfe 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -26,7 +26,8 @@ jobs: - name: test run: pnpm test - name: test website - run: pnpm -C packages/website test + # the cache doesn't include cypress install, need to do it manually here + run: pnpm -C packages/website exec cypress install && pnpm -C packages/website test - name: build run: pnpm --recursive run build - name: lint