chore(deps): update dependency pnpm to v10.26.1 #1190
Workflow file for this run
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: | |
| branches: | |
| - main | |
| pull_request: | |
| jobs: | |
| test: | |
| strategy: | |
| fail-fast: false | |
| matrix: | |
| os: [ubuntu-latest, windows-latest] | |
| name: Test - ${{ matrix.os }} | |
| runs-on: ${{ matrix.os }} | |
| steps: | |
| - name: Handle line endings | |
| shell: bash | |
| if: runner.os == 'Windows' | |
| run: | | |
| git config --system core.autocrlf false | |
| git config --system core.eol lf | |
| - uses: actions/checkout@v6 | |
| - uses: actions/cache@v5 | |
| with: | |
| path: | | |
| ~/.cargo/bin/ | |
| ~/.cargo/registry/index/ | |
| ~/.cargo/registry/cache/ | |
| ~/.cargo/git/db/ | |
| target/ | |
| key: ${{ runner.os }}-cargo | |
| - uses: jdx/mise-action@v3 | |
| - run: pnpm i --frozen-lockfile | |
| - name: Configure path (windows) | |
| shell: bash | |
| if: runner.os == 'Windows' | |
| run: | | |
| echo 'C:\\npm\\prefix' >> $GITHUB_PATH | |
| - name: Setup | |
| run: pnpm run test:setup | |
| - name: Unit tests | |
| run: pnpm run test:unit | |
| - name: Integration tests | |
| run: pnpm run test:integration | |
| release: | |
| needs: test | |
| if: ${{ github.event_name == 'push' }} | |
| secrets: inherit | |
| uses: ./.github/workflows/release.yml |