Skip to content
Merged
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
10 changes: 5 additions & 5 deletions .github/workflows/pr.yml
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ jobs:
cache-dependency-path: package-lock.json

- name: Install dependencies
run: npm ci
run: npm install --no-audit --no-fund

- name: Lint UI Kit
run: make ui-kit-lint
Expand All @@ -68,7 +68,7 @@ jobs:
cache-dependency-path: package-lock.json

- name: Install dependencies
run: npm ci
run: npm install --no-audit --no-fund

- name: Build UI Kit
run: make ui-kit-build
Expand Down Expand Up @@ -100,7 +100,7 @@ jobs:
cache-dependency-path: package-lock.json

- name: Install dependencies
run: npm ci
run: npm install --no-audit --no-fund

- name: Lint
run: make lint
Expand All @@ -124,7 +124,7 @@ jobs:
cache-dependency-path: package-lock.json

- name: Install dependencies
run: npm ci
run: npm install --no-audit --no-fund

- name: Run tests with coverage
run: make test-coverage
Expand Down Expand Up @@ -155,7 +155,7 @@ jobs:
cache-dependency-path: package-lock.json

- name: Install dependencies
run: npm ci
run: npm install --no-audit --no-fund

- name: Download UI Kit dist
uses: actions/download-artifact@v8
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release-tauri-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -133,7 +133,7 @@ jobs:
cache-dependency-path: package-lock.json

- name: Install Node dependencies
run: npm ci
run: npm install --no-audit --no-fund

# ── Rust ──────────────────────────────────────────────────────────────
- name: Set up Rust
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ jobs:
cache-dependency-path: package-lock.json

- name: Install dependencies
run: npm ci
run: npm install --no-audit --no-fund

- name: Build web app
run: make build-web
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release_beta.yml
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ jobs:
cache-dependency-path: package-lock.json

- name: Install dependencies
run: npm ci
run: npm install --no-audit --no-fund

- name: Build web app
run: make build-web
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release_canary.yml
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ jobs:
cache-dependency-path: package-lock.json

- name: Install dependencies
run: npm ci
run: npm install --no-audit --no-fund

- name: Build web app
run: make build-web
Expand Down
Loading