testdriverai 7.2.57 → 7.2.58

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.
@@ -1,52 +1,68 @@
1
1
  name: Publish
2
2
  permissions:
3
- contents: write
4
- id-token: write # Required for OIDC
3
+ contents: write
4
+ id-token: write # Required for OIDC
5
5
  on:
6
6
  push:
7
- branches: [ main ]
7
+ branches: [main]
8
8
 
9
9
  jobs:
10
10
  publish:
11
11
  runs-on: ubuntu-latest
12
-
12
+
13
13
  steps:
14
- - uses: actions/checkout@v4
15
- with:
16
- fetch-depth: 0
17
- token: ${{ secrets.GITHUB_TOKEN }}
18
-
19
- - name: Setup Node.js
20
- uses: actions/setup-node@v4
21
- with:
22
- node-version: '20'
23
- registry-url: 'https://registry.npmjs.org/'
24
-
25
- - name: Configure Git
26
- run: |
27
- git config user.name "github-actions[bot]"
28
- git config user.email "github-actions[bot]@users.noreply.github.com"
29
-
30
- - name: Install dependencies
31
- run: npm ci
32
-
33
- - name: Bump version (patch)
34
- run: npm version patch --no-git-tag-version
35
-
36
- - name: Commit and push version bump
37
- run: |
38
- git add package.json package-lock.json
39
- git commit -m "chore: bump version to $(node -p "require('./package.json').version")"
40
- git push
41
-
42
- - name: Debug NPM Token
43
- run: |
44
- echo "NPM_TOKEN is set: ${{ secrets.NPM_TOKEN != '' }}"
45
- echo "NPM_TOKEN first 4 chars: ${NPM_TOKEN:0:4}..."
46
- env:
47
- NPM_TOKEN: ${{ secrets.NPM_TOKEN }}
48
-
49
- - name: Publish to npm
50
- run: npm publish --tag beta
51
- env:
52
- NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
14
+ - uses: actions/checkout@v4
15
+ with:
16
+ fetch-depth: 0
17
+ token: ${{ secrets.GITHUB_TOKEN }}
18
+
19
+ - name: Setup Node.js
20
+ uses: actions/setup-node@v4
21
+ with:
22
+ node-version: "20"
23
+ registry-url: "https://registry.npmjs.org/"
24
+
25
+ - name: Configure Git
26
+ run: |
27
+ git config user.name "github-actions[bot]"
28
+ git config user.email "github-actions[bot]@users.noreply.github.com"
29
+
30
+ - name: Install dependencies
31
+ run: npm ci
32
+
33
+ - name: Bump version (patch)
34
+ run: npm version patch --no-git-tag-version
35
+
36
+ - name: Generate Changelog
37
+ run: |
38
+ npx conventional-changelog-cli -p angular -i CHANGELOG.md -s
39
+ git add CHANGELOG.md
40
+
41
+ - name: Commit and push version bump
42
+ run: |
43
+ git add package.json package-lock.json
44
+ VERSION=$(node -p "require('./package.json').version")
45
+ git commit -m "chore(release): ${VERSION}"
46
+ git tag "v${VERSION}"
47
+ git push origin main
48
+ git push origin "v${VERSION}"
49
+ echo "VERSION=${VERSION}" >> $GITHUB_ENV
50
+
51
+ - name: Create GitHub Release
52
+ uses: softprops/action-gh-release@v1
53
+ with:
54
+ tag_name: v${{ env.VERSION }}
55
+ generate_release_notes: true
56
+ prerelease: false
57
+
58
+ - name: Debug NPM Token
59
+ run: |
60
+ echo "NPM_TOKEN is set: ${{ secrets.NPM_TOKEN != '' }}"
61
+ echo "NPM_TOKEN first 4 chars: ${NPM_TOKEN:0:4}..."
62
+ env:
63
+ NPM_TOKEN: ${{ secrets.NPM_TOKEN }}
64
+
65
+ - name: Publish to npm
66
+ run: npm publish --tag beta
67
+ env:
68
+ NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
package/CHANGELOG.md ADDED
@@ -0,0 +1,10 @@
1
+ ## [7.2.58](https://github.com/testdriverai/testdriverai/compare/v6.1.8...v7.2.58) (2026-01-27)
2
+
3
+
4
+ ### Reverts
5
+
6
+ * Revert "list dashcam version g" ([5037571](https://github.com/testdriverai/testdriverai/commit/5037571440c33f8966104874c542c6c57a809510))
7
+ * Revert "update discord invite" ([b5a9b99](https://github.com/testdriverai/testdriverai/commit/b5a9b9955cf2b0b07fd0ebeb6abf65f89cd3d5a8))
8
+
9
+
10
+
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "testdriverai",
3
- "version": "7.2.57",
3
+ "version": "7.2.58",
4
4
  "description": "Next generation autonomous AI agent for end-to-end testing of web & desktop",
5
5
  "main": "sdk.js",
6
6
  "types": "sdk.d.ts",