chore(deps): update dependency vercel to v59 #17322
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: Test | |
| on: | |
| - push | |
| - pull_request | |
| permissions: | |
| contents: read | |
| jobs: | |
| test: | |
| strategy: | |
| matrix: | |
| node-version: | |
| - 22 | |
| - 24 | |
| os: | |
| - ubuntu-latest | |
| runs-on: ${{ matrix.os }} | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v7 | |
| - name: Install pnpm | |
| uses: pnpm/action-setup@v6 | |
| - name: Use Node.js ${{ matrix.node-version }} | |
| uses: actions/setup-node@v6 | |
| with: | |
| node-version: ${{ matrix.node-version }} | |
| cache: pnpm | |
| - name: Install Dependencies | |
| run: pnpm ci | |
| - name: Package Build Test | |
| run: pnpm run build | |
| - name: Linter test | |
| run: pnpm run lint | |
| - name: Unit test | |
| run: pnpm run test | |
| - name: API Description Lint | |
| run: pnpm run api:lint | |
| - name: Docs Build Test | |
| run: pnpm run docs:build |