Skip to content

[1986] Make ServiceMethod fail if parameters don't match arity #6251

[1986] Make ServiceMethod fail if parameters don't match arity

[1986] Make ServiceMethod fail if parameters don't match arity #6251

Workflow file for this run

name: Pull Request Checks
on:
pull_request:
paths-ignore:
- "CHANGELOG.adoc"
- "docker-compose.yml"
- ".github/PULL_REQUEST_TEMPLATE.md"
- "doc/**"
types:
[
opened,
synchronize,
reopened,
labeled,
unlabeled,
milestoned,
demilestoned,
]
jobs:
build:
name: Metadata Review
runs-on: ubuntu-latest
permissions:
contents: read
packages: read
steps:
- name: Checkout
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
with:
fetch-depth: 0
persist-credentials: false
- name: Setup Node SDK
uses: actions/setup-node@49933ea5288caeca8642d1e84afbd3f7d6820020 # v4.4.0
with:
node-version: 22.16
registry-url: https://npm.pkg.github.com/
- name: Check that the CHANGELOG files have been updated
env:
GITHUB_EVENT: ${{ toJSON(github.event) }}
run: node scripts/check-changelog.js
- name: Check that the copyright of the modified files has been updated
env:
GITHUB_EVENT: ${{ toJSON(github.event) }}
run: node scripts/check-copyright.js
- name: Check that the labels of the pull request are ok
env:
GITHUB_EVENT: ${{ toJSON(github.event) }}
run: node scripts/check-labels.js
- name: Check that the milestone of the pull request is ok
env:
GITHUB_EVENT: ${{ toJSON(github.event) }}
run: node scripts/check-milestone.js
- name: Check that the TypeScript files do not have an issue
env:
GITHUB_EVENT: ${{ toJSON(github.event) }}
run: node scripts/check-ts.js