You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+10-7Lines changed: 10 additions & 7 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -79,7 +79,7 @@ env:
79
79
80
80
steps:
81
81
- label: ':nodejs: Install dependencies'
82
-
commands: npm ci
82
+
command: npm ci
83
83
plugins:
84
84
- cache#v1.7.0:
85
85
backend: fs
@@ -88,7 +88,7 @@ steps:
88
88
restore: file
89
89
save: file
90
90
compression: tgz # Optional compression
91
-
```
91
+
```
92
92
93
93
#### `s3`
94
94
@@ -113,7 +113,7 @@ env:
113
113
114
114
steps:
115
115
- label: ':nodejs: Install dependencies'
116
-
commands: npm ci
116
+
command: npm ci
117
117
plugins:
118
118
- cache#v1.7.0:
119
119
backend: s3
@@ -212,7 +212,7 @@ You can assume that all calls like this will be preceded by an `exists` call to
212
212
213
213
Will save whatever is in the `$FILENAME` path (which can be a file or folder) in a way that can be identified by the string `$KEY`. A non-0 return code will cause the whole execution to halt and the current step to fail.
214
214
215
-
* should fail with error 255 on any instance, preferably without outpu
215
+
* should fail with error 255 on any instance, preferably without output
216
216
217
217
## Examples
218
218
@@ -232,7 +232,8 @@ steps:
232
232
command: npm ci
233
233
plugins:
234
234
- cache#v1.7.0:
235
-
manifest: package-lock.json
235
+
manifest:
236
+
- package-lock.json
236
237
path: node_modules
237
238
restore: pipeline
238
239
save:
@@ -243,7 +244,8 @@ steps:
243
244
command: npm test # does not save cache, not necessary
0 commit comments