fix(workflow): change the yarn install flags
Some checks failed
Test / Svelte Checks (push) Failing after 33s
Lint / Lint Code (push) Failing after 29s

This commit is contained in:
Ilia Mashkov
2026-01-14 12:40:56 +03:00
parent 36ed19e195
commit 8b704f1f82
4 changed files with 8 additions and 4 deletions

View File

@@ -39,7 +39,8 @@ jobs:
${{ runner.os }}-yarn-
- name: Install dependencies
run: yarn install --frozen-lockfile --prefer-offline
# --immutable ensures the lockfile isn't changed (replaces --frozen-lockfile)
run: yarn install --immutable
- name: Build Svelte App
run: yarn build

View File

@@ -44,7 +44,8 @@ jobs:
${{ runner.os }}-yarn-
- name: Install dependencies
run: yarn install --frozen-lockfile --prefer-offline
# --immutable ensures the lockfile isn't changed (replaces --frozen-lockfile)
run: yarn install --immutable
- name: Validation
run: |

View File

@@ -51,4 +51,5 @@ jobs:
${{ runner.os }}-yarn-
- name: Install dependencies
run: yarn install --frozen-lockfile --prefer-offline
# --immutable ensures the lockfile isn't changed (replaces --frozen-lockfile)
run: yarn install --immutable

View File

@@ -40,7 +40,8 @@ jobs:
${{ runner.os }}-yarn-
- name: Install dependencies
run: yarn install --frozen-lockfile --prefer-offline
# --immutable ensures the lockfile isn't changed (replaces --frozen-lockfile)
run: yarn install --immutable
- name: Type Check
run: yarn svelte-check --threshold warning