Change workflows to exclude optional dependencies

This commit is contained in:
Nicholas Wallace
2026-09-10 17:16:19 -07:00
parent c4aed2587f
commit bf92d18b48
4 changed files with 4 additions and 4 deletions
+1 -1
View File
@@ -28,7 +28,7 @@ jobs:
java-version: 21
- name: install dependencies
run: npm ci
run: npm ci --omit=optional
- name: build Nuxt project
run: npm run generate
+1 -1
View File
@@ -32,7 +32,7 @@ jobs:
cache: npm
- name: Install JavaScript dependencies
run: npm ci
run: npm ci --omit=optional
- name: Build shared web app
run: npm run generate
+1 -1
View File
@@ -32,7 +32,7 @@ jobs:
cache: npm
- name: Install JavaScript dependencies
run: npm ci
run: npm ci --omit=optional
- name: Build shared web app
run: npm run generate
+1 -1
View File
@@ -27,7 +27,7 @@ jobs:
java-version: 21
- name: install dependencies
run: npm ci
run: npm ci --omit=optional
- name: build Nuxt project
run: npm run generate