chore(deps-dev): bump vite from 7.2.2 to 7.2.4 #499
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: Adapter React | |
| env: | |
| CI: true | |
| FORCE_COLOR: 1 | |
| on: | |
| push: | |
| branches: | |
| - master | |
| paths: | |
| - 'packages/adapter-react/**' | |
| - .github/workflows/adapter-react.yml | |
| - pnpm-lock.yaml | |
| pull_request: | |
| paths: | |
| - 'packages/adapter-react/**' | |
| - .github/workflows/adapter-react.yml | |
| - pnpm-lock.yaml | |
| jobs: | |
| test: | |
| timeout-minutes: 60 | |
| runs-on: ubuntu-latest | |
| permissions: | |
| pull-requests: write | |
| steps: | |
| - uses: actions/checkout@v5 | |
| - uses: pnpm/action-setup@v4 | |
| with: | |
| version: latest | |
| - uses: actions/setup-node@v6 | |
| with: | |
| node-version: lts/* | |
| cache: pnpm | |
| - run: pnpm install | |
| - run: pnpm -r --filter filsnap-adapter-react run lint | |
| - run: pnpm -r --filter filsnap-adapter-react exec depcheck | |
| - run: pnpm -r --filter filsnap-adapter-react run test | |
| id: tests | |
| env: | |
| GITHUB_TOKEN: ${{ secrets.GH_TOKEN }} |