Build(deps): Bump y-protocols from 1.0.6 to 1.0.7 #9
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: Vitest CI | |
| permissions: {} | |
| on: | |
| pull_request: | |
| types: | |
| - opened | |
| - synchronize | |
| push: | |
| branches: | |
| - "**" | |
| jobs: | |
| eslint: | |
| name: ⚙️ Test with Vitest | |
| runs-on: ubuntu-latest | |
| permissions: | |
| contents: read | |
| strategy: | |
| matrix: | |
| node-version: [22.x, 24.x] | |
| steps: | |
| - uses: actions/checkout@v6 | |
| - name: Use Node.js ${{ matrix.node-version }} | |
| uses: actions/setup-node@v4 | |
| with: | |
| node-version: ${{ matrix.node-version }} | |
| - name: Install pnpm | |
| run: corepack disable && npm install -g pnpm | |
| - name: Install dependencies | |
| run: pnpm install | |
| - name: Execute vitest | |
| run: pnpm ci:vitest |