@@ -3,34 +3,34 @@ description: 'Checks out the repository and install'
3
3
runs :
4
4
using : ' composite'
5
5
steps :
6
- - uses : actions/checkout@v4
7
- with :
8
- fetch-depth : 0
6
+ # - uses: actions/checkout@v4
7
+ # with:
8
+ # fetch-depth: 0
9
9
- name : Setup Node.js
10
10
uses : actions/setup-node@v4
11
11
with :
12
12
node-version : 20
13
- - name : Restore cached npm dependencies
14
- id : cache-dependencies-restore
15
- uses : actions/cache/restore@v4
16
- with :
17
- path : |
18
- node_modules
19
- ~/.cache/Cypress # needed for the Cypress binary
20
- key : ${{ runner.os }}-npm-dependencies-${{ hashFiles('package-lock.json') }}
13
+ # - name: Restore cached npm dependencies
14
+ # id: cache-dependencies-restore
15
+ # uses: actions/cache/restore@v4
16
+ # with:
17
+ # path: |
18
+ # node_modules
19
+ # ~/.cache/Cypress # needed for the Cypress binary
20
+ # key: ${{ runner.os }}-npm-dependencies-${{ hashFiles('package-lock.json') }}
21
21
- name : Npm install
22
22
if : steps.cache.outputs.cache-hit != 'true'
23
23
run : npm ci
24
24
shell : bash
25
- - name : Cache npm dependencies
26
- id : cache-dependencies-save
27
- uses : actions/cache/save@v4
28
- with :
29
- path : |
30
- node_modules
31
- ~/.cache/Cypress # needed for the Cypress binary
32
- key : ${{ steps.cache-dependencies-restore.outputs.cache-primary-key }}
33
- - name : Derive appropriate SHAs for base and head for `nx affected` commands
34
- uses : nrwl/nx-set-shas@v4
35
- with :
36
- main-branch-name : " master"
25
+ # - name: Cache npm dependencies
26
+ # id: cache-dependencies-save
27
+ # uses: actions/cache/save@v4
28
+ # with:
29
+ # path: |
30
+ # node_modules
31
+ # ~/.cache/Cypress # needed for the Cypress binary
32
+ # key: ${{ steps.cache-dependencies-restore.outputs.cache-primary-key }}
33
+ # - name: Derive appropriate SHAs for base and head for `nx affected` commands
34
+ # uses: nrwl/nx-set-shas@v4
35
+ # with:
36
+ # main-branch-name: "master"
0 commit comments