chore: update md-plugins dependencies #100
Workflow file for this run
This file contains hidden or 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: Run Vitest Tests | |
| on: | |
| push: # Trigger on push to any branch | |
| pull_request: # Trigger on pull request to any branch | |
| jobs: | |
| vitest: | |
| name: Run Vitest | |
| runs-on: ubuntu-latest | |
| steps: | |
| # Checkout the repository code | |
| - uses: actions/checkout@v6 | |
| # Install pnpm | |
| - name: Install pnpm | |
| uses: pnpm/action-setup@v6 | |
| with: | |
| run_install: false | |
| # Use Node.js | |
| - name: Use Node.js 24 | |
| uses: actions/setup-node@v5 | |
| with: | |
| node-version: 24 | |
| cache: 'pnpm' | |
| cache-dependency-path: pnpm-lock.yaml | |
| # Install dependencies for all packages | |
| - name: Install dependencies | |
| run: pnpm install --frozen-lockfile | |
| # Run checks in dependency-safe order | |
| - name: Verify | |
| run: pnpm verify |