testdriverai 5.7.34 → 5.7.35
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.
|
@@ -2,7 +2,7 @@ name: Test TestDriverAI Installation
|
|
|
2
2
|
|
|
3
3
|
on:
|
|
4
4
|
schedule:
|
|
5
|
-
- cron:
|
|
5
|
+
- cron: "0 * * * *" # Runs every hour
|
|
6
6
|
workflow_dispatch:
|
|
7
7
|
push:
|
|
8
8
|
branches:
|
|
@@ -18,7 +18,7 @@ jobs:
|
|
|
18
18
|
fail-fast: false
|
|
19
19
|
matrix:
|
|
20
20
|
runner: [macos-latest, windows-latest]
|
|
21
|
-
node-version: [
|
|
21
|
+
node-version: ["18", "20", "22"]
|
|
22
22
|
|
|
23
23
|
steps:
|
|
24
24
|
- name: Checkout repository
|
|
@@ -2,7 +2,7 @@ name: TestDriver.ai
|
|
|
2
2
|
|
|
3
3
|
permissions:
|
|
4
4
|
contents: write
|
|
5
|
-
pull-requests: write
|
|
5
|
+
pull-requests: write
|
|
6
6
|
actions: read
|
|
7
7
|
statuses: write
|
|
8
8
|
|
|
@@ -52,7 +52,7 @@ jobs:
|
|
|
52
52
|
prerun: |
|
|
53
53
|
exit
|
|
54
54
|
key: ${{ secrets.TESTDRIVER_API_KEY }}
|
|
55
|
-
prompt: |
|
|
55
|
+
prompt: |
|
|
56
56
|
1. /run testdriver/${{ matrix.test }}
|
|
57
57
|
env:
|
|
58
58
|
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
|
@@ -99,9 +99,6 @@ jobs:
|
|
|
99
99
|
steps:
|
|
100
100
|
- name: Check out current branch
|
|
101
101
|
uses: actions/checkout@v3
|
|
102
|
-
with:
|
|
103
|
-
ref: ${{ github.head_ref }}
|
|
104
|
-
|
|
105
102
|
- name: Download all snippets artifacts
|
|
106
103
|
uses: actions/download-artifact@v4
|
|
107
104
|
with:
|