From 1447957e9773a85ca31b6a21ab5e16d3118ff181 Mon Sep 17 00:00:00 2001 From: Matan Kushner Date: Sun, 26 Feb 2023 12:00:16 +0900 Subject: [PATCH] ci: add caching for docs publishing step --- .github/workflows/publish-docs.yml | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/.github/workflows/publish-docs.yml b/.github/workflows/publish-docs.yml index e614c5e1..775eb868 100644 --- a/.github/workflows/publish-docs.yml +++ b/.github/workflows/publish-docs.yml @@ -8,14 +8,13 @@ jobs: steps: - name: Setup | Checkout uses: actions/checkout@v3 - with: - # Required to include the recently merged Crowdin PR - ref: master - name: Setup | Node uses: actions/setup-node@v3 with: node-version: 16 + cache: 'npm' + cache-dependency-path: docs/package-lock.json - name: Setup | Install dependencies run: npm install