fix typo workerPoolMode (#6407) #1
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
on: | |
schedule: | |
- cron: '0 */4 * * *' | |
push: | |
branches: | |
- master | |
pull_request: | |
paths: | |
- .github/actions/prepare/action.yml | |
- .github/workflows/e2e-husky-workflow.yml | |
- scripts/e2e-setup-ci.sh | |
name: 'E2E Husky' | |
jobs: | |
chore: | |
name: 'Validating Husky' | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: ./.github/actions/prepare | |
- name: 'Running the integration test' | |
run: | | |
source scripts/e2e-setup-ci.sh | |
git init | |
echo '/.yarn' > .gitignore | |
echo '{"skipCI": false, "hooks": {"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"}}' > .huskyrc | |
echo 'module.exports = {extends: ["@commitlint/config-conventional"]};' > commitlint.config.js | |
yarn init -p | |
yarn add -D husky@^4.0.0-beta.1 @commitlint/{cli,config-conventional} | |
git add . | |
! git commit -m "Invalid commit message should fail pre-commit check" | |
git commit -m "test: lint on commitmsg should pass pre-commit check" |