Skip to content

Commit a85a0aa

Browse files
committed
revert wrong merge
1 parent 613e318 commit a85a0aa

File tree

3 files changed

+1
-19
lines changed

3 files changed

+1
-19
lines changed

.github/actions/setup-node/action.yaml

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,3 @@ runs:
1313
- name: Install node_modules
1414
shell: bash
1515
run: ./scripts/yarn_install.sh
16-
- name: Install depcheck
17-
shell: bash
18-
run : npm install -g depcheck

Makefile

Lines changed: 0 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -408,27 +408,12 @@ lint: lint/shellcheck lint/go lint/ts lint/helm
408408
lint/ts:
409409
cd site
410410
yarn && yarn lint
411-
depcheck || true
412-
if [ -f unused.json ]; then
413-
echo "Unused dependencies found:"
414-
cat unused.json
415-
echo "Please review and remove these dependencies manually."
416-
exit 1
417-
fi
418411
.PHONY: lint/ts
419412

420413
lint/go:
421414
./scripts/check_enterprise_imports.sh
422415
go install github.com/golangci/golangci-lint/cmd/golangci-lint@v1.53.2
423416
golangci-lint run
424-
go mod tidy
425-
git diff --exit-code -- go.mod go.sum
426-
if [ $? -ne 0 ]; then
427-
echo "Unused Go dependencies found:"
428-
git diff go.mod go.sum
429-
echo "Please review and remove these dependencies manually."
430-
exit 1
431-
fi
432417
.PHONY: lint/go
433418

434419
# Use shfmt to determine the shell files, takes editorconfig into consideration.

dogfood/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -191,7 +191,7 @@ RUN apt-get update && \
191191
google-chrome-stable microsoft-edge-beta && \
192192
# Pre-install system dependencies that Playwright needs. npx doesn't work here
193193
# for some reason. See https://github.com/microsoft/playwright-cli/issues/136
194-
npm i -g playwright@1.19.1 && playwright install-deps depcheck
194+
npm i -g playwright@1.19.1 && playwright install-deps
195195

196196
# Ensure PostgreSQL binaries are in the users $PATH.
197197
RUN update-alternatives --install /usr/local/bin/initdb initdb /usr/lib/postgresql/13/bin/initdb 100 && \

0 commit comments

Comments
 (0)