File tree 2 files changed +27
-28
lines changed
2 files changed +27
-28
lines changed Original file line number Diff line number Diff line change 1
- name : integration-test
1
+ name : Integration Tests
2
2
on :
3
3
push :
4
4
branches :
8
8
- " *"
9
9
10
10
jobs :
11
- smoke-tests :
12
- runs-on : ubuntu-latest
13
- steps :
14
- - uses : actions/checkout@v4
15
-
16
- - uses : pnpm/action-setup@v3
17
- with :
18
- version : 9.4.0
19
-
20
- - uses : actions/setup-node@v4
21
- with :
22
- node-version : " 23"
23
- cache : " pnpm"
24
-
25
- - name : Run smoke tests
26
- run : pnpm run smokeTests
27
-
28
- approval :
29
- runs-on : ubuntu-latest
30
- needs : smoke-tests
31
- steps :
32
- - name : Wait for manual approval
33
- run : |
34
- echo "Please approve the workflow manually to proceed."
35
- echo "::pause::" # This creates a manual approval checkpoint.
36
-
37
11
integration-tests :
38
12
runs-on : ubuntu-latest
39
- needs : approval
40
13
env :
41
14
OPENAI_API_KEY : ${{ secrets.OPENAI_API_KEY }}
42
15
steps :
Original file line number Diff line number Diff line change
1
+ name : smoke-test
2
+ on :
3
+ push :
4
+ branches :
5
+ - " *"
6
+ pull_request :
7
+ branches :
8
+ - " *"
9
+
10
+ jobs :
11
+ smoke-tests :
12
+ runs-on : ubuntu-latest
13
+ steps :
14
+ - uses : actions/checkout@v4
15
+
16
+ - uses : pnpm/action-setup@v3
17
+ with :
18
+ version : 9.4.0
19
+
20
+ - uses : actions/setup-node@v4
21
+ with :
22
+ node-version : " 23"
23
+ cache : " pnpm"
24
+
25
+ - name : Run smoke tests
26
+ run : pnpm run smokeTests
You can’t perform that action at this time.
0 commit comments