From 5474af707f8896704b464269318859dbc81968b3 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Hu=C3=A1ng=20J=C3=B9nli=C3=A0ng?= Date: Thu, 2 Jul 2020 09:43:52 -0400 Subject: [PATCH] add Yarn 2 cache example --- examples.md | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) diff --git a/examples.md b/examples.md index 15da4e3..3778d03 100644 --- a/examples.md +++ b/examples.md @@ -14,6 +14,7 @@ - [Using multiple systems and `npm config`](#using-multiple-systems-and-npm-config) - [Node - Lerna](#node---lerna) - [Node - Yarn](#node---yarn) + - [Node - Yarn 2](#node---yarn-2) - [OCaml/Reason - esy](#ocamlreason---esy) - [PHP - Composer](#php---composer) - [Python - pip](#python---pip) @@ -231,6 +232,24 @@ The yarn cache directory will depend on your operating system and version of `ya ${{ runner.os }}-yarn- ``` + +## Node - Yarn 2 +The yarn 2 cache directory will depend on your config. See https://yarnpkg.com/configuration/yarnrc#cacheFolder for more info. + +```yaml +- name: Get yarn cache directory path + id: yarn-cache-dir-path + run: echo "::set-output name=dir::$(yarn config get cacheFolder)" + +- uses: actions/cache@v2 + id: yarn-cache # use this to check for `cache-hit` (`steps.yarn-cache.outputs.cache-hit != 'true'`) + with: + path: ${{ steps.yarn-cache-dir-path.outputs.dir }} + key: ${{ runner.os }}-yarn-${{ hashFiles('**/yarn.lock') }} + restore-keys: | + ${{ runner.os }}-yarn- +``` + ## OCaml/Reason - esy Esy allows you to export built dependencies and import pre-built dependencies. ```yaml