File tree 5 files changed +15
-13
lines changed
5 files changed +15
-13
lines changed Original file line number Diff line number Diff line change 2
2
3
3
timeout : 2700s # set build timeout to 45 mins
4
4
steps :
5
- - name : node:16
5
+ - name : node:16.14.2
6
6
id : ' Install dependencies'
7
7
entrypoint : npm
8
8
args : ['ci', '--production']
9
9
10
- - name : node:16
10
+ - name : node:16.14.2
11
11
id : ' Generate .env file'
12
12
entrypoint : npm
13
13
args : ['run', 'cloud-secrets']
14
14
env :
15
15
- ' PROJECT_ID=$PROJECT_ID'
16
16
17
- - name : node:16
17
+ - name : node:16.14.2
18
18
id : ' Build site'
19
19
entrypoint : npm
20
20
args : ['run', 'build']
26
26
id : ' Deploy site to Firebase'
27
27
args : ['deploy']
28
28
29
- - name : node:16
29
+ - name : node:16.14.2
30
30
id : ' Algolia index site'
31
31
entrypoint : npm
32
32
args : ['run', 'algolia']
Original file line number Diff line number Diff line change 1
1
# This Cloud Build task can kick off our actual deploy if the hash has changed.
2
2
3
3
steps :
4
- - name : node:16
4
+ - name : node:16.14.2
5
5
id : ' Install dependencies'
6
6
entrypoint : npm
7
7
args : ['ci', '--production']
8
8
9
- - name : node:16
9
+ - name : node:16.14.2
10
10
id : ' Verify and maybe kick off build for new version'
11
11
entrypoint : npm
12
12
args : ['run', 'version-check']
Original file line number Diff line number Diff line change 9
9
isPresubmit : ${{ steps.presubmit.outputs.isPresubmit }}
10
10
steps :
11
11
- name : Checkout
12
- uses : actions/checkout@v2
13
- with :
14
- fetch-depth : 1
12
+ uses : actions/checkout@v3
15
13
16
14
- name : Install dependencies
17
15
run : npm ci --prefix .github/actions/presubmit
31
29
NODE_OPTIONS : --max_old_space_size=4096
32
30
steps :
33
31
- name : Checkout
34
- uses : actions/checkout@v2
32
+ uses : actions/checkout@v3
33
+
34
+ - name : Setup node
35
+ uses : actions/setup-node@v3
35
36
with :
36
- fetch-depth : 1
37
+ node-version : ' v16.14.2'
38
+ cache : ' npm'
37
39
38
40
- name : Install dependencies
39
41
run : npm ci
Original file line number Diff line number Diff line change 1
- v16.14.0
1
+ v16.14.2
Original file line number Diff line number Diff line change 172
172
" not ie <= 11"
173
173
],
174
174
"volta" : {
175
- "node" : " 16.14.0 "
175
+ "node" : " 16.14.2 "
176
176
}
177
177
}
You can’t perform that action at this time.
0 commit comments