Skip to content

Commit

Permalink
chore: remove commit lint from pull requests (#7957)
Browse files Browse the repository at this point in the history
  • Loading branch information
OrKoN committed Feb 4, 2022
1 parent 96c3f94 commit 09ff56b
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 1 deletion.
5 changes: 5 additions & 0 deletions .github/workflows/main.yml
Expand Up @@ -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:
Expand Down
2 changes: 1 addition & 1 deletion package.json
Expand Up @@ -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",
Expand Down

0 comments on commit 09ff56b

Please sign in to comment.