5
5
- master
6
6
pull_request :
7
7
branches :
8
- - ' ** '
8
+ - " ** "
9
9
env :
10
- NODE_VERSION : 14.16.1
10
+ NODE_VERSION : 14.17.0
11
11
PARSE_SERVER_TEST_TIMEOUT : 20000
12
12
jobs :
13
13
check-ci :
@@ -32,45 +32,45 @@ jobs:
32
32
- name : CI Self-Check
33
33
run : npm run ci:check
34
34
check-lint :
35
- name : Lint
36
- timeout-minutes : 15
37
- runs-on : ubuntu-18.04
38
- steps :
39
- - uses : actions/checkout@v2
40
- - name : Use Node.js ${{ matrix.NODE_VERSION }}
41
- uses : actions/setup-node@v1
42
- with :
43
- node-version : ${{ matrix.node-version }}
44
- - name : Cache Node.js modules
45
- uses : actions/cache@v2
46
- with :
47
- path : ~/.npm
48
- key : ${{ runner.os }}-node-${{ matrix.NODE_VERSION }}-${{ hashFiles('**/package-lock.json') }}
49
- restore-keys : |
50
- ${{ runner.os }}-node-${{ matrix.NODE_VERSION }}-
51
- - name : Install dependencies
52
- run : npm ci
53
- - run : npm run lint
35
+ name : Lint
36
+ timeout-minutes : 15
37
+ runs-on : ubuntu-18.04
38
+ steps :
39
+ - uses : actions/checkout@v2
40
+ - name : Use Node.js ${{ matrix.NODE_VERSION }}
41
+ uses : actions/setup-node@v1
42
+ with :
43
+ node-version : ${{ matrix.node-version }}
44
+ - name : Cache Node.js modules
45
+ uses : actions/cache@v2
46
+ with :
47
+ path : ~/.npm
48
+ key : ${{ runner.os }}-node-${{ matrix.NODE_VERSION }}-${{ hashFiles('**/package-lock.json') }}
49
+ restore-keys : |
50
+ ${{ runner.os }}-node-${{ matrix.NODE_VERSION }}-
51
+ - name : Install dependencies
52
+ run : npm ci
53
+ - run : npm run lint
54
54
check-circular :
55
- name : Circular Dependencies
56
- timeout-minutes : 5
57
- runs-on : ubuntu-18.04
58
- steps :
59
- - uses : actions/checkout@v2
60
- - name : Use Node.js ${{ matrix.NODE_VERSION }}
61
- uses : actions/setup-node@v1
62
- with :
63
- node-version : ${{ matrix.node-version }}
64
- - name : Cache Node.js modules
65
- uses : actions/cache@v2
66
- with :
67
- path : ~/.npm
68
- key : ${{ runner.os }}-node-${{ matrix.NODE_VERSION }}-${{ hashFiles('**/package-lock.json') }}
69
- restore-keys : |
70
- ${{ runner.os }}-node-${{ matrix.NODE_VERSION }}-
71
- - name : Install dependencies
72
- run : npm ci
73
- - run : npm run madge:circular
55
+ name : Circular Dependencies
56
+ timeout-minutes : 5
57
+ runs-on : ubuntu-18.04
58
+ steps :
59
+ - uses : actions/checkout@v2
60
+ - name : Use Node.js ${{ matrix.NODE_VERSION }}
61
+ uses : actions/setup-node@v1
62
+ with :
63
+ node-version : ${{ matrix.node-version }}
64
+ - name : Cache Node.js modules
65
+ uses : actions/cache@v2
66
+ with :
67
+ path : ~/.npm
68
+ key : ${{ runner.os }}-node-${{ matrix.NODE_VERSION }}-${{ hashFiles('**/package-lock.json') }}
69
+ restore-keys : |
70
+ ${{ runner.os }}-node-${{ matrix.NODE_VERSION }}-
71
+ - name : Install dependencies
72
+ run : npm ci
73
+ - run : npm run madge:circular
74
74
check-docker :
75
75
name : Docker Build
76
76
timeout-minutes : 5
@@ -94,12 +94,12 @@ jobs:
94
94
matrix :
95
95
include :
96
96
- name : MongoDB 4.4, ReplicaSet, WiredTiger
97
- MONGODB_VERSION : 4.4.4
97
+ MONGODB_VERSION : 4.4.6
98
98
MONGODB_TOPOLOGY : replicaset
99
99
MONGODB_STORAGE_ENGINE : wiredTiger
100
100
NODE_VERSION : 14.16.1
101
101
- name : MongoDB 4.2, ReplicaSet, WiredTiger
102
- MONGODB_VERSION : 4.2.13
102
+ MONGODB_VERSION : 4.2.14
103
103
MONGODB_TOPOLOGY : replicaset
104
104
MONGODB_STORAGE_ENGINE : wiredTiger
105
105
NODE_VERSION : 14.16.1
@@ -115,17 +115,17 @@ jobs:
115
115
NODE_VERSION : 14.16.1
116
116
- name : Redis Cache
117
117
PARSE_SERVER_TEST_CACHE : redis
118
- MONGODB_VERSION : 4.4.4
118
+ MONGODB_VERSION : 4.4.6
119
119
MONGODB_TOPOLOGY : standalone
120
120
MONGODB_STORAGE_ENGINE : wiredTiger
121
121
NODE_VERSION : 14.16.1
122
122
- name : Node 12
123
- MONGODB_VERSION : 4.4.4
123
+ MONGODB_VERSION : 4.4.6
124
124
MONGODB_TOPOLOGY : standalone
125
125
MONGODB_STORAGE_ENGINE : wiredTiger
126
126
NODE_VERSION : 12.22.1
127
127
- name : Node 15
128
- MONGODB_VERSION : 4.4.4
128
+ MONGODB_VERSION : 4.4.6
129
129
MONGODB_TOPOLOGY : standalone
130
130
MONGODB_STORAGE_ENGINE : wiredTiger
131
131
NODE_VERSION : 15.14.0
@@ -137,8 +137,8 @@ jobs:
137
137
redis :
138
138
image : redis
139
139
ports :
140
- - 6379:6379
141
- env :
140
+ - 6379:6379
141
+ env :
142
142
MONGODB_VERSION : ${{ matrix.MONGODB_VERSION }}
143
143
MONGODB_TOPOLOGY : ${{ matrix.MONGODB_TOPOLOGY }}
144
144
MONGODB_STORAGE_ENGINE : ${{ matrix.MONGODB_STORAGE_ENGINE }}
0 commit comments