From 900d2d5f9e897880331ecd56755ac32844d71c6b Mon Sep 17 00:00:00 2001 From: Billy Vong Date: Thu, 10 Aug 2023 10:21:00 -0400 Subject: [PATCH] feat(ci): Cache `node_modules` in flaky test detector This should cut down on the `yarn install` step. --- .github/workflows/flaky-test-detector.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/flaky-test-detector.yml b/.github/workflows/flaky-test-detector.yml index 6057361b0174..4eaa0f5d64ab 100644 --- a/.github/workflows/flaky-test-detector.yml +++ b/.github/workflows/flaky-test-detector.yml @@ -35,6 +35,7 @@ jobs: uses: actions/setup-node@v3 with: node-version-file: 'package.json' + cache: 'yarn' - name: Install dependencies run: yarn install --ignore-engines --frozen-lockfile