From 86b7824c78ab0672a85726559178c2250d8b4fed Mon Sep 17 00:00:00 2001 From: Andras Bacsai Date: Wed, 4 May 2022 13:22:54 +0200 Subject: [PATCH] Update github-actions.yml --- .github/workflows/github-actions.yml | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/.github/workflows/github-actions.yml b/.github/workflows/github-actions.yml index f074ef559..3608633fd 100644 --- a/.github/workflows/github-actions.yml +++ b/.github/workflows/github-actions.yml @@ -24,6 +24,20 @@ jobs: with: username: ${{ secrets.DOCKERHUB_USERNAME }} password: ${{ secrets.DOCKERHUB_TOKEN }} + - + name: Cache pnpm modules + uses: actions/cache@v2 + with: + path: ~/.pnpm-store + key: ${{ runner.os }}-${{ hashFiles('**/pnpm-lock.yaml') }} + restore-keys: | + ${{ runner.os }}- + + - + uses: pnpm/action-setup@v2.1.0 + with: + version: 7.0.0 + run_install: false - name: Build and push uses: docker/build-push-action@v2