testdriverai 5.7.39 → 5.7.41

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.
@@ -17,8 +17,8 @@ on:
17
17
  - cron: "0 0 * * *"
18
18
 
19
19
  jobs:
20
- publish-beta:
21
- name: Publish testdriverai@beta
20
+ publish-canary:
21
+ name: Publish testdriverai@canary
22
22
  runs-on: ubuntu-latest
23
23
  steps:
24
24
  - uses: actions/checkout@v4
@@ -27,9 +27,13 @@ jobs:
27
27
  - uses: actions/setup-node@v3
28
28
  with:
29
29
  node-version: "20"
30
+ - name: Version
31
+ # Unique prerelease version specific to this commit
32
+ # v5.7.40-canary.09e0e4c.0
33
+ run: npm version --no-git-tag-version prerelease --preid=canary.$(git rev-parse --short HEAD)
30
34
  - uses: JS-DevTools/npm-publish@v3
31
35
  with:
32
- tag: "beta"
36
+ tag: "canary"
33
37
  token: ${{ secrets.NPM_AUTH_TOKEN }}
34
38
 
35
39
  gather-test-files:
@@ -51,7 +55,9 @@ jobs:
51
55
 
52
56
  run-tests:
53
57
  name: Run Tests
54
- needs: gather-test-files
58
+ needs:
59
+ - gather-test-files
60
+ - publish-canary
55
61
  runs-on: ubuntu-latest
56
62
  strategy:
57
63
  matrix:
@@ -66,7 +72,7 @@ jobs:
66
72
  id: testdriver
67
73
  uses: testdriverai/action@main
68
74
  with:
69
- version: "beta"
75
+ version: "canary"
70
76
  os: ${{ contains(matrix.os, 'windows') && 'windows' || 'linux' }}
71
77
  prerun: |
72
78
  exit
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "testdriverai",
3
- "version": "5.7.39",
3
+ "version": "5.7.41",
4
4
  "description": "Next generation autonomous AI agent for end-to-end testing of web & desktop",
5
5
  "main": "index.js",
6
6
  "bin": {