chore(deps): update dependency eslint-plugin-pnpm to v1.6.0 #2685
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: Tests | |
| on: | |
| pull_request: | |
| paths: | |
| - '**' | |
| jobs: | |
| build: | |
| name: Builds & Tests | |
| runs-on: ubuntu-latest | |
| timeout-minutes: 10 | |
| strategy: | |
| matrix: | |
| prj: | |
| [ | |
| handles, | |
| docs, | |
| helpers, | |
| internals, | |
| sveltekit, | |
| vite-plugin-kit-routes, | |
| vite-plugin-watch-and-run, | |
| vite-plugin-stripper, | |
| eslint-config, | |
| ] | |
| steps: | |
| - name: π Checkout Repository | |
| uses: actions/checkout@v6 | |
| with: | |
| # This makes Actions fetch all Git history so that Changesets can generate changelogs with the correct commits | |
| fetch-depth: 0 | |
| submodules: recursive | |
| - name: πͺ pnpm setup | |
| uses: pnpm/action-setup@v4 | |
| with: | |
| version: 10.5.2 | |
| run_install: false | |
| - name: π οΈ node setup | |
| uses: actions/setup-node@v6 | |
| with: | |
| node-version: 24.12.0 | |
| cache: pnpm | |
| - name: π§βπ» install | |
| run: pnpm i | |
| - name: π§ Build all Packages | |
| run: pnpm -r build | |
| - name: π§Ή Lint | |
| run: pnpm -F ${{ matrix.prj }} lint | |
| - name: πͺ Check | |
| run: pnpm -F ${{ matrix.prj }} check | |
| - name: π Run Tests | |
| run: pnpm -F ${{ matrix.prj }} test:ci | |
| diff_dependencies: | |
| runs-on: ubuntu-latest | |
| permissions: | |
| contents: read | |
| pull-requests: write | |
| steps: | |
| - name: Checkout repository | |
| uses: actions/checkout@v6 | |
| with: | |
| fetch-depth: 0 | |
| - name: Create Diff | |
| uses: e18e/action-dependency-diff@v1 | |
| with: | |
| duplicate-threshold: '3' |