chore: remove commit lint from pull requests (#7957)

This commit is contained in:
Alex Rudenko 2022-02-04 20:42:15 +01:00 committed by GitHub
parent 96c3f943b2
commit 09ff56b7a8
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 6 additions and 1 deletions

View File

@ -50,6 +50,11 @@ jobs:
npm run ensure-correct-devtools-protocol-revision
npm run test-types-file
- name: Run commit lint
run: |
npm run commitlint
if: github.event_name != 'pull_request'
- name: Run unit tests
uses: nick-invision/retry@v2
env:

View File

@ -26,7 +26,7 @@
"commitlint": "commitlint --from=HEAD~1",
"markdownlint": "prettier --check **/README.md docs/troubleshooting.md",
"markdownlint-fix": "prettier --write **/README.md docs/troubleshooting.md",
"lint": "npm run eslint && npm run build && npm run doc && npm run commitlint && npm run markdownlint",
"lint": "npm run eslint && npm run build && npm run doc && npm run markdownlint",
"doc": "node utils/doclint/cli.js",
"clean-lib": "rimraf lib",
"build": "npm run tsc && npm run generate-d-ts",