diff options
| author | renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> | 2023-04-12 18:04:59 +0200 |
|---|---|---|
| committer | GitHub <[email protected]> | 2023-04-12 18:04:59 +0200 |
| commit | 79fc7c07f8b714ddd3d9e2082682869f41652d5e (patch) | |
| tree | 2dd205810250b14273b0786d3c0ad7f6f1f3d5fd /.github | |
| parent | 1abf31bd5df05b8fb3d3861a3f6780401244fd34 (diff) | |
| download | faker-79fc7c07f8b714ddd3d9e2082682869f41652d5e.tar.xz faker-79fc7c07f8b714ddd3d9e2082682869f41652d5e.zip | |
chore(deps): update pnpm to v8 (#2039)
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: Shinigami92 <[email protected]>
Diffstat (limited to '.github')
| -rw-r--r-- | .github/workflows/ci.yml | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index f4000ca6..6830db97 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -36,11 +36,16 @@ jobs: # Required for docs/versions tests fetch-depth: 0 - - name: Install pnpm + - name: Install pnpm (node 14, pnpm 7) + if: matrix.node_version == 14 uses: pnpm/[email protected] with: version: 7 + - name: Install pnpm + if: matrix.node_version != 14 + uses: pnpm/[email protected] + - name: Set node version to ${{ matrix.node_version }} uses: actions/setup-node@v3 with: |
