ci-cost-diff-action 0.1.0 → 0.1.1

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/CHANGELOG.md CHANGED
@@ -1,5 +1,9 @@
1
1
  # Changelog
2
2
 
3
+ ## 0.1.1
4
+
5
+ - Fixed the test suite in GitHub Actions by isolating `GITHUB_ACTION` from comment-scope unit tests.
6
+
3
7
  ## 0.1.0
4
8
 
5
9
  - Initial implementation.
@@ -31,7 +31,6 @@ flowchart TD
31
31
 
32
32
  The GitHub Action runs checked-in source directly through `action.yml` with `runs.using: node24` and `runs.main: src/action.js`; there is no build or bundled artifact. Package verification asserts the npm tarball contents, CLI executable mode, package metadata, lockfile metadata, action metadata, and release workflow guardrails before publishing.
33
33
 
34
- The release workflow publishes from a checked-out tag with npm Trusted Publishing. It uses a GitHub-hosted runner, `permissions: id-token: write`, Node `24`, `package-manager-cache: false`, and `npm publish --provenance --ignore-scripts`. Once the npm package has a trusted publisher configured for `HupBaHa/cost-diff` and workflow `release.yml`, the workflow does not need `NPM_TOKEN` or another long-lived npm API key.
35
34
 
36
35
  ## Baseline Selection
37
36
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "ci-cost-diff-action",
3
- "version": "0.1.0",
3
+ "version": "0.1.1",
4
4
  "description": "GitHub Action and CLI that estimates GitHub Actions job cost and reports CI cost deltas in pull requests.",
5
5
  "type": "module",
6
6
  "author": "HupBaHa",