-
Notifications
You must be signed in to change notification settings - Fork 1.6k
Commit
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,20 +1,19 @@ | ||
# This Cloud Build task can kick off our actual deploy if the hash has changed. | ||
|
||
This comment was marked as off-topic.
Sorry, something went wrong.
This comment was marked as off-topic.
Sorry, something went wrong. |
||
steps: | ||
- name: node:14 | ||
- name: node:16.14.2 | ||
id: 'Install dependencies' | ||
entrypoint: npm | ||
args: ['ci'] | ||
|
||
- name: node:14 | ||
- name: node:16.14.2 | ||
id: 'Verify and maybe kick off build for new version' | ||
entrypoint: npm | ||
args: ['run', 'version-check'] | ||
env: | ||
- 'PROJECT_ID=$PROJECT_ID' | ||
- 'NODE_ENV=production' | ||
- 'PROJECT_ID=$PROJECT_ID' | ||
- 'NODE_ENV=production' | ||
|
||
options: | ||
env: | ||
- 'PROJECT_ID=$PROJECT_ID' | ||
- 'NODE_OPTIONS=--unhandled-rejections=strict' | ||
- 'PROJECT_ID=$PROJECT_ID' |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
v14.15.0 | ||
This comment was marked as off-topic.
Sorry, something went wrong.
Mavanm599
|
||
v16.14.2 |
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -133,5 +133,8 @@ | |
"unist-util-visit": "^2.0.3", | ||
"uslug": "^1.0.4", | ||
"wicg-inert": "^3.0.3" | ||
}, | ||
This comment was marked as off-topic.
Sorry, something went wrong.
Mavanm599
|
||
"volta": { | ||
"node": "16.14.2" | ||
} | ||
} |
#3432