kempo-testing-framework 1.4.12 → 1.4.14
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.
|
@@ -29,7 +29,12 @@ jobs:
|
|
|
29
29
|
|
|
30
30
|
- uses: actions/setup-node@v4
|
|
31
31
|
with:
|
|
32
|
-
node-version: '
|
|
32
|
+
node-version: '22.x'
|
|
33
|
+
registry-url: 'https://registry.npmjs.org'
|
|
34
|
+
|
|
35
|
+
# Trusted publishing needs npm >=11.5.1; Node 22.x still bundles 10.9.x. Without this, OIDC
|
|
36
|
+
# publish auth is silently unavailable and the registry returns a 404 rather than an auth error.
|
|
37
|
+
- run: npm install -g npm@latest
|
|
33
38
|
|
|
34
39
|
- run: npm ci
|
|
35
40
|
|
|
@@ -53,14 +58,4 @@ jobs:
|
|
|
53
58
|
env:
|
|
54
59
|
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
|
55
60
|
|
|
56
|
-
-
|
|
57
|
-
run: |
|
|
58
|
-
cat << EOF > ~/.npmrc
|
|
59
|
-
//registry.npmjs.org/:_authToken=\${NPM_TOKEN}
|
|
60
|
-
registry=https://registry.npmjs.org/
|
|
61
|
-
always-auth=true
|
|
62
|
-
EOF
|
|
63
|
-
|
|
64
|
-
- run: npm publish --access public
|
|
65
|
-
env:
|
|
66
|
-
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}
|
|
61
|
+
- run: npm publish --access public
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "kempo-testing-framework",
|
|
3
|
-
"version": "1.4.
|
|
3
|
+
"version": "1.4.14",
|
|
4
4
|
"description": "The Kempo Testing Framework is a simple testing framework built on the principle that code intended to be ran in the browser should be tested in the browser, code intended to be ran in Node should be tested in Node, and code intended to be ran in both should be tested in both. No mocking, no complexity—just testing.",
|
|
5
5
|
"main": "index.js",
|
|
6
6
|
"bin": {
|