Skip to content

Commit 4a77ba1

Browse files
committed
disable dedupe check until usability and performanse problemas are fixed in pnpm
1 parent 84d38ba commit 4a77ba1

File tree

1 file changed

+19
-19
lines changed

1 file changed

+19
-19
lines changed

.github/workflows/ci.yml

+19-19
Original file line numberDiff line numberDiff line change
@@ -40,25 +40,25 @@ jobs:
4040
# if: ${{ github.event.pull_request.base.ref == 'release' }}
4141
# env:
4242
# GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
43-
dedupe-check:
44-
runs-on: ubuntu-latest
45-
if: github.event.pull_request.head.ref == 'next'
46-
steps:
47-
- name: Checkout repository
48-
uses: actions/checkout@v2
43+
# dedupe-check:
44+
# runs-on: ubuntu-latest
45+
# if: github.event.pull_request.head.ref == 'next'
46+
# steps:
47+
# - name: Checkout repository
48+
# uses: actions/checkout@v2
4949

50-
- name: Install pnpm
51-
run: npm install -g [email protected]
50+
# - name: Install pnpm
51+
# run: npm install -g [email protected]
5252

53-
- name: Run pnpm dedupe
54-
run: pnpm dedupe
53+
# - name: Run pnpm dedupe
54+
# run: pnpm dedupe
5555

56-
- name: Check for changes
57-
run: |
58-
if ! git diff --exit-code --quiet pnpm-lock.yaml; then
59-
echo "pnpm dedupe introduced changes:"
60-
git diff --color=always pnpm-lock.yaml
61-
exit 1
62-
else
63-
echo "No changes detected after pnpm dedupe in pnpm-lock.yaml"
64-
fi
56+
# - name: Check for changes
57+
# run: |
58+
# if ! git diff --exit-code --quiet pnpm-lock.yaml; then
59+
# echo "pnpm dedupe introduced changes:"
60+
# git diff --color=always pnpm-lock.yaml
61+
# exit 1
62+
# else
63+
# echo "No changes detected after pnpm dedupe in pnpm-lock.yaml"
64+
# fi

0 commit comments

Comments
 (0)