Commit 833ac2b 1 parent 23c7324 commit 833ac2b Copy full SHA for 833ac2b
File tree 2 files changed +11
-0
lines changed
2 files changed +11
-0
lines changed Original file line number Diff line number Diff line change 12
12
jobs :
13
13
build_and_test :
14
14
runs-on : ubuntu-latest
15
+ timeout-minutes : 20
15
16
steps :
16
17
- name : Checkout
17
18
uses : actions/checkout@v3
43
44
needs :
44
45
- build_and_test
45
46
runs-on : ubuntu-latest
47
+ timeout-minutes : 10
46
48
strategy :
47
49
fail-fast : false
48
50
matrix :
98
100
needs :
99
101
- smoke_test
100
102
runs-on : ubuntu-latest
103
+ timeout-minutes : 10
101
104
if : ${{ github.ref == 'refs/heads/main' && github.head_ref == null }}
102
105
permissions :
103
106
contents : write
Original file line number Diff line number Diff line change
1
+ variables :
2
+ # Setting a depth of 1 can result in jobs failing if they are not the latest commit when they begin executing.
3
+ # See https://docs.gitlab.com/ee/ci/runners/configure_runners.html#shallow-cloning
4
+ GIT_DEPTH : ' 3'
5
+
1
6
before_script :
2
7
- apt-get update
3
8
- wget --no-verbose https://dl.google.com/linux/direct/google-chrome-stable_current_amd64.deb
@@ -6,16 +11,19 @@ before_script:
6
11
7
12
node:18 :
8
13
image : node:18
14
+ timeout : 20 minutes
9
15
script :
10
16
- PARALLEL_BUILD=false PARALLEL_E2E=false EXPLICIT_WAIT_TIMEOUT=20000 TEST_TIMEOUT=60000 DOCKER=true npm test
11
17
12
18
node:20 :
13
19
image : node:20
20
+ timeout : 20 minutes
14
21
script :
15
22
- PARALLEL_BUILD=false PARALLEL_E2E=false EXPLICIT_WAIT_TIMEOUT=20000 TEST_TIMEOUT=60000 DOCKER=true npm test
16
23
17
24
node:21 :
18
25
image : node:21
26
+ timeout : 20 minutes
19
27
script :
20
28
- PARALLEL_BUILD=false PARALLEL_E2E=false EXPLICIT_WAIT_TIMEOUT=20000 TEST_TIMEOUT=60000 DOCKER=true npm test
21
29
You can’t perform that action at this time.
0 commit comments