File tree 3 files changed +48
-18
lines changed 3 files changed +48
-18
lines changed Original file line number Diff line number Diff line change @@ -27,14 +27,19 @@ jobs:
27
27
- name : Checkout
28
28
uses : actions/checkout@v4
29
29
30
- - name : Enable corepack
31
- run : corepack enable
32
-
33
30
- name : Setup Node.js
34
31
uses : actions/setup-node@v4
35
32
with :
36
33
node-version : ${{ env.node_version }}
37
34
35
+ - name : Enable corepack
36
+ run : corepack enable
37
+
38
+ # Issue: https://github.com/cypress-io/github-action/issues/1355
39
+ - name : Set alternate npm integrity keys
40
+ run : |
41
+ echo COREPACK_INTEGRITY_KEYS="$(curl https://registry.npmjs.org/-/npm/v1/keys | jq -c '{npm: .keys}')" >> $GITHUB_ENV
42
+
38
43
- name : Install dependencies
39
44
run : npx nypm@latest i
40
45
@@ -54,15 +59,20 @@ jobs:
54
59
with :
55
60
fetch-depth : 0 # fetch all history for tags
56
61
57
- - name : Enable corepack
58
- run : corepack enable
59
-
60
62
- name : Setup Node.js
61
63
uses : actions/setup-node@v4
62
64
with :
63
65
node-version : ${{ env.node_version }}
64
66
registry-url : ${{ env.NODE_REGISTRY }}
65
67
68
+ - name : Enable corepack
69
+ run : corepack enable
70
+
71
+ # Issue: https://github.com/cypress-io/github-action/issues/1355
72
+ - name : Set alternate npm integrity keys
73
+ run : |
74
+ echo COREPACK_INTEGRITY_KEYS="$(curl https://registry.npmjs.org/-/npm/v1/keys | jq -c '{npm: .keys}')" >> $GITHUB_ENV
75
+
66
76
- name : Install dependencies
67
77
run : npx nypm@latest i
68
78
Original file line number Diff line number Diff line change @@ -27,14 +27,19 @@ jobs:
27
27
- name : Checkout
28
28
uses : actions/checkout@v4
29
29
30
- - name : Enable corepack
31
- run : corepack enable
32
-
33
30
- name : Setup Node.js
34
31
uses : actions/setup-node@v4
35
32
with :
36
33
node-version : ${{ env.node_version }}
37
34
35
+ - name : Enable corepack
36
+ run : corepack enable
37
+
38
+ # Issue: https://github.com/cypress-io/github-action/issues/1355
39
+ - name : Set alternate npm integrity keys
40
+ run : |
41
+ echo COREPACK_INTEGRITY_KEYS="$(curl https://registry.npmjs.org/-/npm/v1/keys | jq -c '{npm: .keys}')" >> $GITHUB_ENV
42
+
38
43
- name : Install dependencies
39
44
run : npx nypm@latest i
40
45
@@ -54,15 +59,20 @@ jobs:
54
59
with :
55
60
fetch-depth : 0 # fetch all history for tags
56
61
57
- - name : Enable corepack
58
- run : corepack enable
59
-
60
62
- name : Setup Node.js
61
63
uses : actions/setup-node@v4
62
64
with :
63
65
node-version : ${{ env.node_version }}
64
66
registry-url : ${{ env.NODE_REGISTRY }}
65
67
68
+ - name : Enable corepack
69
+ run : corepack enable
70
+
71
+ # Issue: https://github.com/cypress-io/github-action/issues/1355
72
+ - name : Set alternate npm integrity keys
73
+ run : |
74
+ echo COREPACK_INTEGRITY_KEYS="$(curl https://registry.npmjs.org/-/npm/v1/keys | jq -c '{npm: .keys}')" >> $GITHUB_ENV
75
+
66
76
- name : Install dependencies
67
77
run : npx nypm@latest i
68
78
Original file line number Diff line number Diff line change @@ -21,14 +21,19 @@ jobs:
21
21
- name : Checkout
22
22
uses : actions/checkout@v4
23
23
24
- - name : Enable corepack
25
- run : corepack enable
26
-
27
24
- name : Setup Node.js
28
25
uses : actions/setup-node@v4
29
26
with :
30
27
node-version : ${{ env.node_version }}
31
28
29
+ - name : Enable corepack
30
+ run : corepack enable
31
+
32
+ # Issue: https://github.com/cypress-io/github-action/issues/1355
33
+ - name : Set alternate npm integrity keys
34
+ run : |
35
+ echo COREPACK_INTEGRITY_KEYS="$(curl https://registry.npmjs.org/-/npm/v1/keys | jq -c '{npm: .keys}')" >> $GITHUB_ENV
36
+
32
37
- name : Install dependencies
33
38
run : npx nypm@latest i
34
39
@@ -48,14 +53,19 @@ jobs:
48
53
- name : Checkout
49
54
uses : actions/checkout@v4
50
55
51
- - name : Enable corepack
52
- run : corepack enable
53
-
54
56
- name : Setup Node.js
55
57
uses : actions/setup-node@v4
56
58
with :
57
59
node-version : ${{ env.node_version }}
58
60
61
+ - name : Enable corepack
62
+ run : corepack enable
63
+
64
+ # Issue: https://github.com/cypress-io/github-action/issues/1355
65
+ - name : Set alternate npm integrity keys
66
+ run : |
67
+ echo COREPACK_INTEGRITY_KEYS="$(curl https://registry.npmjs.org/-/npm/v1/keys | jq -c '{npm: .keys}')" >> $GITHUB_ENV
68
+
59
69
- name : Install dependencies
60
70
run : npx nypm@latest i
61
71
You can’t perform that action at this time.
0 commit comments