From ca74431f4355ec16fb37df7380a8bd4e858961d0 Mon Sep 17 00:00:00 2001 From: mehmet-erim Date: Sat, 5 Sep 2020 02:04:02 +0300 Subject: [PATCH] ci: add cache process to angular action --- .github/workflows/angular.yml | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/.github/workflows/angular.yml b/.github/workflows/angular.yml index 1b4d37bd39..b0d6e413e4 100644 --- a/.github/workflows/angular.yml +++ b/.github/workflows/angular.yml @@ -9,6 +9,14 @@ jobs: runs-on: ubuntu-18.04 steps: - uses: actions/checkout@v1 + + - uses: actions/cache@v2 + with: + path: | + node_modules + */*/node_modules + key: ${{ runner.os }}-${{ hashFiles('**/yarn.lock') }} + - uses: actions/setup-node@v1 with: node-version: '12.x'