Skip to content

Commit 36314ff

Browse files
committed
Initialize top-level npm package
All the building and testing will be executable from the root of the repository, for ease of use. Logically separated actions will live under cross-dependent npm workspaces (requires npm 7 or higher).
1 parent fbe4306 commit 36314ff

File tree

3 files changed

+38
-0
lines changed

3 files changed

+38
-0
lines changed

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
/node_modules/

package-lock.json

Lines changed: 13 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
{
2+
"name": "@scality-actions/index",
3+
"version": "1.0.0",
4+
"description": "Collection of Scality re-usable GitHub Actions written with Typescript.",
5+
"scripts": {
6+
"test": "echo \"Error: no test specified\" && exit 1"
7+
},
8+
"repository": {
9+
"type": "git",
10+
"url": "git+https://github.com/scality/actions.git"
11+
},
12+
"keywords": [
13+
"github-actions",
14+
"actions",
15+
"scality",
16+
"typescript"
17+
],
18+
"author": "Scality",
19+
"license": "Apache-2.0",
20+
"bugs": {
21+
"url": "https://github.com/scality/actions/issues"
22+
},
23+
"homepage": "https://github.com/scality/actions#readme"
24+
}

0 commit comments

Comments
 (0)