Skip to content
Closed
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/actions/e2e-setup/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ runs:

- name: Install dependencies
shell: bash
run: yarn install
run: yarn install --immutable

- name: Build dependencies
shell: bash
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/knip.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ jobs:
cache: 'yarn'

- name: Install dependencies
run: yarn install
run: yarn install --immutable

- name: Run Knip
run:
Expand Down
10 changes: 5 additions & 5 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ jobs:
cache-dependency-path: 'yarn.lock'
cache: 'yarn'
- name: Install root dependencies
run: yarn install
run: yarn install --immutable
- name: Build dependencies
run: make ci-build
- name: Install core libs
Expand All @@ -41,7 +41,7 @@ jobs:
cache-dependency-path: 'yarn.lock'
cache: 'yarn'
- name: Install root dependencies
run: yarn install
run: yarn install --immutable
- name: Build dependencies
run: make ci-build
- name: Run unit tests
Expand All @@ -59,13 +59,13 @@ jobs:
cache-dependency-path: 'yarn.lock'
cache: 'yarn'
- name: Install root dependencies
run: yarn install
run: yarn install --immutable
- name: Expose GitHub Runtime
uses: crazy-max/ghaction-github-runtime@v4
- name: Spin up docker services
run: |
docker buildx create --use --driver=docker-container
docker buildx bake -f ./docker-compose.ci.yml --set *.cache-to="type=gha" --set *.cache-from="type=gha" --load
docker buildx bake -f ./docker-compose.ci.yml --set *.cache-to="type=gha,mode=max,scope=ci-integration" --set *.cache-from="type=gha,scope=ci-integration" --load
- name: Build dependencies
run: make ci-build
- name: Run integration tests
Expand Down Expand Up @@ -264,7 +264,7 @@ jobs:
cache: 'yarn'

- name: Install dependencies
run: yarn install
run: yarn install --immutable

- name: Build App
run: yarn build:clickhouse
Expand Down
Loading