fix(deps): update vitest monorepo to v2.1.4 #13315
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: Pull Request | |
on: | |
pull_request: | |
types: ["opened", "edited", "reopened", "synchronize"] | |
jobs: | |
check-title: | |
runs-on: ubuntu-24.04 | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: pnpm/action-setup@v4.0.0 | |
- name: Use Node.js | |
uses: actions/setup-node@v4.1.0 | |
with: | |
node-version: 20 | |
cache: "pnpm" | |
- run: pnpm install --prod | |
- name: Check PR title | |
env: | |
TITLE: ${{ github.event.pull_request.title }} | |
run: echo "$TITLE" | pnpm commitlint |