We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 79a474f commit d374546Copy full SHA for d374546
.github/workflows/CI_PIPELINE.yml
@@ -36,6 +36,21 @@ jobs:
36
echo "changed=false" >> $GITHUB_ENV
37
fi
38
39
+ - name: Set up Node.js
40
+ if: env.changed == 'true'
41
+ uses: actions/setup-node@v3
42
+ with:
43
+ node-version: '20'
44
+
45
+ - name: Cache dependencies for ${{ matrix.project }}
46
47
+ uses: actions/cache@v3
48
49
+ path: ${{ matrix.project }}/node_modules
50
+ key: ${{ runner.os }}-yarn-${{ hashFiles(format('{0}/yarn.lock', matrix.project)) }}
51
+ restore-keys: |
52
+ ${{ runner.os }}-yarn-
53
54
- name: Install Dependencies for ${{ matrix.project }}
55
if: env.changed == 'true'
56
run: yarn install
0 commit comments