Skip to content

Commit 8c6849c

Browse files
authored
Merge branch 'develop' into master
2 parents 399bd65 + 64aa3e7 commit 8c6849c

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

81 files changed

+2367
-2123
lines changed

.eslintrc.js

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -176,7 +176,9 @@ function buildTSOverride({files, tsconfig}) {
176176
'jsdoc/check-param-names': ['off', {'checkDestructured': false}],
177177
// Allow any text in the license tag. Other checks are not relevant.
178178
'jsdoc/check-values': ['off'],
179-
'jsdoc/newline-after-description': ['error'],
179+
// Ensure there is a blank line between the body and any @tags,
180+
// as required by the tsdoc spec (see #6353).
181+
'jsdoc/tag-lines': ['error', 'any', {'startLines': 1}],
180182
},
181183
};
182184
}

.github/workflows/appengine_deploy.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ jobs:
4242
path: _deploy/
4343

4444
- name: Deploy to App Engine
45-
uses: google-github-actions/deploy-appengine@v1.2.2
45+
uses: google-github-actions/deploy-appengine@v1.2.6
4646
# For parameters see:
4747
# https://github.com/google-github-actions/deploy-appengine#inputs
4848
with:

.github/workflows/build.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ jobs:
1818
# TODO (#2114): re-enable osx build.
1919
# os: [ubuntu-latest, macos-latest]
2020
os: [ubuntu-latest]
21-
node-version: [14.x, 16.x, 18.x]
21+
node-version: [14.x, 16.x, 18.x, 20.x]
2222
# See supported Node.js release schedule at
2323
# https://nodejs.org/en/about/releases/
2424

@@ -60,10 +60,10 @@ jobs:
6060
steps:
6161
- uses: actions/checkout@v3
6262

63-
- name: Use Node.js 16.x
63+
- name: Use Node.js 20.x
6464
uses: actions/setup-node@v3
6565
with:
66-
node-version: 16.x
66+
node-version: 20.x
6767

6868
- name: Npm Install
6969
run: npm install
@@ -77,7 +77,7 @@ jobs:
7777
steps:
7878
- uses: actions/checkout@v3
7979

80-
- uses: DoozyX/clang-format-lint-action@v0.15
80+
- uses: DoozyX/clang-format-lint-action@v0.16
8181
with:
8282
source: 'core'
8383
extensions: 'js,ts'

.github/workflows/update_metadata.yml

Lines changed: 0 additions & 46 deletions
This file was deleted.

0 commit comments

Comments
 (0)