Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/check-javascript-style.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ jobs:
- name: Install Node modules
run: |
cd web
yarn install
yarn install --immutable

- name: Run the linter
run: |
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/run-feature-tests-epas.yml
Original file line number Diff line number Diff line change
Expand Up @@ -150,7 +150,7 @@ jobs:
- name: Build the JS bundle
run: |
cd web
yarn install
yarn install --immutable
yarn run bundle

- name: Run the tests
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/run-feature-tests-pg.yml
Original file line number Diff line number Diff line change
Expand Up @@ -160,7 +160,7 @@ jobs:
- name: Build the JS bundle
run: |
cd web
yarn install
yarn install --immutable
yarn run bundle

- name: Run the tests
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/run-javascript-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ jobs:
- name: Install Node modules
run: |
cd web
yarn install
yarn install --immutable

- name: Run the tests
run: |
Expand Down
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ RUN --mount=type=bind,source=.git,target=/pgadmin4/.git \
export CPPFLAGS="-DPNG_ARM_NEON_OPT=0" && \
npm install -g corepack && \
corepack enable && \
yarn install && \
yarn install --immutable && \
yarn run bundle && \
rm -rf yarn.lock \
package.json \
Expand Down
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ appbundle:
./pkg/mac/build.sh $(BUILD_OPTS)

install-node:
cd web && yarn install
cd web && yarn install --immutable

install-python:
./tools/setup-python-env.sh
Expand Down
2 changes: 1 addition & 1 deletion pkg/linux/build-functions.sh
Original file line number Diff line number Diff line change
Expand Up @@ -304,7 +304,7 @@ _copy_code() {
exit 1
fi
yarn set version "${YARN_VERSION}"
yarn install
yarn install --immutable
yarn run bundle
popd > /dev/null || exit

Expand Down
2 changes: 1 addition & 1 deletion pkg/mac/build-functions.sh
Original file line number Diff line number Diff line change
Expand Up @@ -308,7 +308,7 @@ _complete_bundle() {
exit 1
fi
yarn set version "${YARN_VERSION}"
yarn install 2>&1
yarn install --immutable 2>&1

# Record the source commit hash before the heavy lint/webpack
# steps. `yarn run` needs node_modules so this runs after install,
Expand Down
2 changes: 1 addition & 1 deletion pkg/pip/build.sh
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ if [ -z "${YARN_VERSION}" ]; then
exit 1
fi
yarn set version "${YARN_VERSION}"
yarn install
yarn install --immutable
yarn run bundle

# Copy the commit_hash file, it doesn't show up in git ls-files
Expand Down
Loading