@codfish/actions-playground 0.0.0-PR-98--48ab075 → 0.0.0-PR-98--37f7853
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/.github/workflows/validate.yml +4 -4
- package/.markdownlint.json +0 -0
- package/package.json +15 -14
|
@@ -112,13 +112,13 @@ jobs:
|
|
|
112
112
|
- name: run tests
|
|
113
113
|
run: pnpm test
|
|
114
114
|
|
|
115
|
+
- name: Build package
|
|
116
|
+
run: pnpm build
|
|
117
|
+
|
|
115
118
|
- uses: codfish/actions/npm-publish-pr@npm-trusted-publishing
|
|
116
119
|
with:
|
|
117
120
|
github-token: ${{ secrets.GITHUB_TOKEN }}
|
|
118
|
-
npm-token: ${{ secrets.NPM_TOKEN }}
|
|
119
|
-
|
|
120
|
-
- name: Build package
|
|
121
|
-
run: pnpm build
|
|
121
|
+
# npm-token: ${{ secrets.NPM_TOKEN }}
|
|
122
122
|
|
|
123
123
|
- name: Calculate build size
|
|
124
124
|
run: |
|
package/.markdownlint.json
CHANGED
|
File without changes
|
package/package.json
CHANGED
|
@@ -1,11 +1,23 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@codfish/actions-playground",
|
|
3
|
-
"version": "0.0.0-PR-98--
|
|
3
|
+
"version": "0.0.0-PR-98--37f7853",
|
|
4
4
|
"description": "My own testing ground for messing around with GitHub Actions.",
|
|
5
5
|
"private": false,
|
|
6
6
|
"publishConfig": {
|
|
7
7
|
"access": "public"
|
|
8
8
|
},
|
|
9
|
+
"scripts": {
|
|
10
|
+
"start": "PUBLIC_URL=/ react-scripts start",
|
|
11
|
+
"build": "react-scripts build",
|
|
12
|
+
"build:docs": "jsdoc src -d docs",
|
|
13
|
+
"eject": "react-scripts eject",
|
|
14
|
+
"format": "cod-scripts format",
|
|
15
|
+
"lint": "cod-scripts lint",
|
|
16
|
+
"lint:md": "markdownlint -i node_modules -i dist .",
|
|
17
|
+
"lint:commit": "cod-scripts commitlint",
|
|
18
|
+
"test": "echo \"No tests yet.\"",
|
|
19
|
+
"validate": "cod-scripts validate"
|
|
20
|
+
},
|
|
9
21
|
"repository": {
|
|
10
22
|
"type": "git",
|
|
11
23
|
"url": "git+https://github.com/codfish/actions-playground.git"
|
|
@@ -13,6 +25,7 @@
|
|
|
13
25
|
"keywords": [
|
|
14
26
|
"foobar"
|
|
15
27
|
],
|
|
28
|
+
"packageManager": "pnpm@10.17.1",
|
|
16
29
|
"author": "",
|
|
17
30
|
"license": "MIT",
|
|
18
31
|
"bugs": {
|
|
@@ -83,17 +96,5 @@
|
|
|
83
96
|
"volta": {
|
|
84
97
|
"node": "22.18.0",
|
|
85
98
|
"yarn": "4.10.3"
|
|
86
|
-
},
|
|
87
|
-
"scripts": {
|
|
88
|
-
"start": "PUBLIC_URL=/ react-scripts start",
|
|
89
|
-
"build": "react-scripts build",
|
|
90
|
-
"build:docs": "jsdoc src -d docs",
|
|
91
|
-
"eject": "react-scripts eject",
|
|
92
|
-
"format": "cod-scripts format",
|
|
93
|
-
"lint": "cod-scripts lint",
|
|
94
|
-
"lint:md": "markdownlint -i node_modules -i dist .",
|
|
95
|
-
"lint:commit": "cod-scripts commitlint",
|
|
96
|
-
"test": "echo \"No tests yet.\"",
|
|
97
|
-
"validate": "cod-scripts validate"
|
|
98
99
|
}
|
|
99
|
-
}
|
|
100
|
+
}
|