update CI to ignore pnpmfile

- This is save since we never run pnpmfiles in ci
 - We can still run it locally
 - It helps us detect if we accidently commit it anyways.
This commit is contained in:
Timo K
2026-04-21 16:10:45 +02:00
parent 741b82b026
commit 8728676eb6
4 changed files with 10 additions and 5 deletions

View File

@@ -43,7 +43,8 @@ jobs:
cache: "pnpm" cache: "pnpm"
node-version-file: ".node-version" node-version-file: ".node-version"
- name: Install dependencies - name: Install dependencies
run: "pnpm install --frozen-lockfile" # ignore-pnpmfile should never be commited. Make CI crash if it happened (`pnpmfileChecksum` is present)
run: "pnpm install --frozen-lockfile --ignore-pnpmfile"
- name: Build Element Call - name: Build Element Call
run: pnpm run build:"$PACKAGE":"$BUILD_MODE" run: pnpm run build:"$PACKAGE":"$BUILD_MODE"
env: env:

View File

@@ -18,7 +18,8 @@ jobs:
cache: "pnpm" cache: "pnpm"
node-version-file: ".node-version" node-version-file: ".node-version"
- name: Install dependencies - name: Install dependencies
run: "pnpm install --frozen-lockfile" # ignore-pnpmfile should never be commited. Make CI crash if it happened (`pnpmfileChecksum` is present)
run: "pnpm install --frozen-lockfile --ignore-pnpmfile"
- name: Prettier - name: Prettier
run: "pnpm run prettier:check" run: "pnpm run prettier:check"
- name: i18n - name: i18n

View File

@@ -20,7 +20,8 @@ jobs:
cache: "pnpm" cache: "pnpm"
node-version-file: ".node-version" node-version-file: ".node-version"
- name: Install dependencies - name: Install dependencies
run: "pnpm install --frozen-lockfile" # ignore-pnpmfile should never be commited. Make CI crash if it happened (`pnpmfileChecksum` is present)
run: "pnpm install --frozen-lockfile --ignore-pnpmfile"
- name: Vitest - name: Vitest
run: "pnpm run test:coverage" run: "pnpm run test:coverage"
- name: Upload to codecov - name: Upload to codecov
@@ -45,7 +46,8 @@ jobs:
cache: "pnpm" cache: "pnpm"
node-version-file: ".node-version" node-version-file: ".node-version"
- name: Install dependencies - name: Install dependencies
run: pnpm install --frozen-lockfile # ignore-pnpmfile should never be commited. Make CI crash if it happened (`pnpmfileChecksum` is present)
run: pnpm install --frozen-lockfile --ignore-pnpmfile
- name: Install Playwright Browsers - name: Install Playwright Browsers
run: pnpm exec playwright install --with-deps run: pnpm exec playwright install --with-deps
- name: Run backend components - name: Run backend components

View File

@@ -26,7 +26,8 @@ jobs:
node-version-file: ".node-version" node-version-file: ".node-version"
- name: Install Deps - name: Install Deps
run: "pnpm install --frozen-lockfile" # ignore-pnpmfile should never be commited. Make CI crash if it happened (`pnpmfileChecksum` is present)
run: "pnpm install --frozen-lockfile --ignore-pnpmfile"
- name: Prune i18n - name: Prune i18n
run: "rm -R locales" run: "rm -R locales"