@@ -18,15 +18,15 @@ jobs:
18
18
build-and-test :
19
19
runs-on : ubuntu-latest
20
20
name : |
21
- ${{ matrix.BROWSER }} | ${{ matrix.JQUERYS .name }}
21
+ ${{ matrix.BROWSER }} | ${{ matrix.CONFIGS .name }}
22
22
strategy :
23
23
fail-fast : false
24
24
matrix :
25
25
BROWSER : [chrome, firefox]
26
- JQUERYS :
27
- - versions : --jquery git --jquery 3.x-git
26
+ CONFIGS :
27
+ - config : jtr- git.yml
28
28
name : jQuery git
29
- - versions : --jquery 3.7.1 --jquery 3.6.4 --jquery 2.2.4 --jquery 1.12.4
29
+ - config : jtr-stable.yml
30
30
name : jQuery stable
31
31
32
32
steps :
@@ -58,20 +58,19 @@ jobs:
58
58
- name : Test
59
59
run : |
60
60
npm run test:unit -- -h -b ${{ matrix.BROWSER }} \
61
- ${{ matrix.JQUERYS.versions }} \
62
- --retries 3 --hard-retries 1
61
+ ${{ matrix.CONFIGS.config }} \
63
62
64
63
edge :
65
64
runs-on : windows-latest
66
65
name : |
67
- edge | ${{ matrix.JQUERYS .name }}
66
+ edge | ${{ matrix.CONFIGS .name }}
68
67
strategy :
69
68
fail-fast : false
70
69
matrix :
71
- JQUERYS :
72
- - versions : --jquery git --jquery 3.x-git
70
+ CONFIGS :
71
+ - config : jtr- git.yml
73
72
name : jQuery git
74
- - versions : --jquery 3.7.1 --jquery 3.6.4 --jquery 2.2.4 --jquery 1.12.4
73
+ - config : jtr-stable.yml
75
74
name : jQuery stable
76
75
steps :
77
76
- name : Checkout
@@ -99,20 +98,19 @@ jobs:
99
98
- name : Test
100
99
run : |
101
100
npm run test:unit -- -h -b edge `
102
- ${{ matrix.JQUERYS.versions }} `
103
- --retries 3 --hard-retries 1
101
+ ${{ matrix.CONFIGS.config }}
104
102
105
103
safari :
106
104
runs-on : macos-latest
107
105
name : |
108
- safari | ${{ matrix.JQUERYS .name }}
106
+ safari | ${{ matrix.CONFIGS .name }}
109
107
strategy :
110
108
fail-fast : false
111
109
matrix :
112
- JQUERYS :
113
- - versions : --jquery git --jquery 3.x-git
110
+ CONFIGS :
111
+ - config : jtr- git.yml
114
112
name : jQuery git
115
- - versions : --jquery 3.7.1 --jquery 3.6.4 --jquery 2.2.4 --jquery 1.12.4
113
+ - config : jtr-stable.yml
116
114
name : jQuery stable
117
115
steps :
118
116
- name : Checkout
@@ -140,5 +138,4 @@ jobs:
140
138
- name : Test
141
139
run : |
142
140
npm run test:unit -- -b safari \
143
- ${{ matrix.JQUERYS.versions }} \
144
- --retries 3 --hard-retries 1
141
+ ${{ matrix.CONFIGS.config }}
0 commit comments