test(core): mock crypto functions in password tests #21215
Workflow file for this run
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
name: Commitlint | |
on: | |
push: | |
branches: | |
- 'push-action/**' | |
pull_request: | |
types: [opened, edited, synchronize, reopened] | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.head_ref || github.run_id }} | |
cancel-in-progress: true | |
jobs: | |
lint-commits: | |
if: github.event_name == 'pull_request' | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
- name: Setup Node and pnpm | |
uses: silverhand-io/actions-node-pnpm-run-steps@v4 | |
- name: Commitlint | |
run: npx commitlint --from HEAD~${{ github.event.pull_request.commits }} --to HEAD | |
- name: Commitlint on PR title | |
run: echo '${{ github.event.pull_request.title }}' | npx commitlint |