From 8578afcf48685b02401bfe6341ee29e2d1bc8e97 Mon Sep 17 00:00:00 2001 From: Benji Grant Date: Sun, 11 Jun 2023 00:27:06 +1000 Subject: [PATCH] Use yarn cache in frontend deployment --- .github/workflows/deploy_frontend.yml | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/.github/workflows/deploy_frontend.yml b/.github/workflows/deploy_frontend.yml index f14ff2b..f27e62f 100644 --- a/.github/workflows/deploy_frontend.yml +++ b/.github/workflows/deploy_frontend.yml @@ -23,6 +23,11 @@ jobs: steps: - uses: actions/checkout@v3 + - uses: actions/setup-node@v3 + with: + node-version: 18 + cache: yarn + cache-dependency-path: '**/yarn.lock' - name: Install Vercel CLI run: npm install --global vercel@latest - name: Pull Vercel Environment Information