From 3908c9636d77afede0c9e398a3df5e1f4fd19c91 Mon Sep 17 00:00:00 2001 From: Zakary Timson Date: Fri, 28 Jul 2023 21:41:52 +0000 Subject: [PATCH] Update .github/workflows/Continues Integration.yaml --- .github/workflows/Continues Integration.yaml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/Continues Integration.yaml b/.github/workflows/Continues Integration.yaml index ee79149..d5fd323 100644 --- a/.github/workflows/Continues Integration.yaml +++ b/.github/workflows/Continues Integration.yaml @@ -11,7 +11,7 @@ jobs: uses: actions/checkout@v3 - name: Restore node_modules - uses: actions/cache@v3 + uses: actions/cache/restore@v3 with: path: node_modules key: ${{runner.os}}-node_modules @@ -20,9 +20,9 @@ jobs: run: npm install - name: Cache node_modules - uses: actions/cache@v3 + uses: actions/cache/save@v3 with: - path: node_modules + path: ./node_modules key: ${{runner.os}}-node_modules build-dev: