Skip to content

chore(deps-dev): Bump typedoc-plugin-missing-exports from 2.1.0 to 2.2.0 in /generator/src/main/resources/dependencies #240

chore(deps-dev): Bump typedoc-plugin-missing-exports from 2.1.0 to 2.2.0 in /generator/src/main/resources/dependencies

chore(deps-dev): Bump typedoc-plugin-missing-exports from 2.1.0 to 2.2.0 in /generator/src/main/resources/dependencies #240

# Copyright 2022 Expedia, Inc.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
name: Contribution Quality Checks
on:
pull_request:
types:
- opened
- edited
- reopened
- synchronize
- ready_for_review
- review_requested
- auto_merge_enabled
push:
branches: '*'
jobs:
contribution-lint:
name: Contribution Details Validation
runs-on: ubuntu-latest
steps:
- name: Check out source repository
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Install Dependencies
run: npm install commitlint@latest @commitlint/config-conventional
- name: Run Pull Request Title Validation
uses: JulienKode/[email protected]
- name: Run Latest Commit Message Validation
run: git log -1 --pretty=format:"%s" | npx commitlint --config commitlint.config.js --verbose