Skip to content

Commit 7be002f

Browse files
committed
Adds node 18 fixes
1 parent 74c1c22 commit 7be002f

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

.github/workflows/build.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ jobs:
3131
strategy:
3232
matrix:
3333
node-version:
34-
- 16.x
34+
- 18.x
3535
steps:
3636
- uses: actions/checkout@v3
3737
- uses: actions/setup-node@v3

.github/workflows/test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ jobs:
2727
strategy:
2828
matrix:
2929
node-version:
30-
- 16.x
30+
- 18.x
3131
steps:
3232
- uses: actions/checkout@v3
3333
- uses: actions/setup-node@v3

app/app.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
# See the License for the specific language governing permissions and
1313
# limitations under the License.
1414

15-
runtime: nodejs16
15+
runtime: nodejs18
1616
handlers:
1717
# Serve all static files with url ending with a file extension
1818
- url: /(.*\..+)$

cloudbuild/deploy.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ steps:
1919
args: ['--prefix=shared', 'install']
2020
- name: 'node:18'
2121
entrypoint: 'npm'
22-
args: ['--prefix=app', 'install']
22+
args: ['--prefix=app', '--legacy-peer-deps', 'install']
2323
- name: 'node:18'
2424
entrypoint: 'npm'
2525
args: ['--prefix=functions', 'install']

0 commit comments

Comments
 (0)