Skip to content

Commit 206417a

Browse files
committed
ci: Debug ci
1 parent be557a0 commit 206417a

File tree

1 file changed

+23
-23
lines changed

1 file changed

+23
-23
lines changed

.github/actions/action.yml

Lines changed: 23 additions & 23 deletions
Original file line numberDiff line numberDiff line change
@@ -3,34 +3,34 @@ description: 'Checks out the repository and install'
33
runs:
44
using: 'composite'
55
steps:
6-
- uses: actions/checkout@v4
7-
with:
8-
fetch-depth: 0
6+
# - uses: actions/checkout@v4
7+
# with:
8+
# fetch-depth: 0
99
- name: Setup Node.js
1010
uses: actions/setup-node@v4
1111
with:
1212
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') }}
2121
- name: Npm install
2222
if: steps.cache.outputs.cache-hit != 'true'
2323
run: npm ci
2424
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

Comments
 (0)