diff --git a/.github/workflows/other-runtime-unit-test.yml b/.github/workflows/other-runtime-unit-test.yml index 68c70f8fb..d4325b9ea 100644 --- a/.github/workflows/other-runtime-unit-test.yml +++ b/.github/workflows/other-runtime-unit-test.yml @@ -41,5 +41,14 @@ jobs: with: path: .turbo key: ${{ runner.os }}-turbo-build-${{ github.sha }} + - name: Deno cache + uses: actions/cache@v3 + with: + path: | + ~/.deno + ~/.cache/deno + key: ${{ runner.os }}-deno-${{ inputs.package }}-${{ hashFiles('**/yarn.lock') }} + restore-keys: | + ${{ runner.os }}-deno-${{ inputs.package }} - name: Deno Unit Test run: yarn test:deno-unit --cache-dir=".turbo" --filter=./packages/${{ inputs.package }}