chore(deps): update all non-major dependencies #4112
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: ci | |
| on: | |
| pull_request: | |
| branches: | |
| - main | |
| push: | |
| branches: | |
| - main | |
| - renovate/* | |
| - renovate/* | |
| jobs: | |
| lint: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v5 | |
| - run: corepack enable | |
| - uses: actions/setup-node@v6 | |
| with: | |
| node-version: lts/-1 | |
| cache: "pnpm" | |
| - name: π¦ Install dependencies | |
| run: pnpm install --frozen-lockfile | |
| - name: π§ Set up project | |
| run: pnpm dev:prepare | |
| - name: π Lint project | |
| run: pnpm run lint | |
| test: | |
| strategy: | |
| matrix: | |
| os: [ubuntu-latest, windows-latest] | |
| runs-on: ${{ matrix.os }} | |
| steps: | |
| - uses: actions/checkout@v5 | |
| - run: corepack enable | |
| - uses: actions/setup-node@v6 | |
| with: | |
| node-version: lts/-1 | |
| cache: "pnpm" | |
| - name: π¦ Install dependencies | |
| run: pnpm install --frozen-lockfile | |
| - name: π§ Set up project | |
| run: pnpm dev:prepare | |
| - name: π Build project | |
| run: pnpm build | |
| - name: π§ͺ Test project | |
| run: pnpm test | |
| - name: πͺ Test types | |
| run: pnpm test:types | |
| - name: π© Coverage | |
| if: matrix.os != 'windows-latest' | |
| uses: codecov/codecov-action@v5 |