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
2 changes: 1 addition & 1 deletion .github/workflows/build-server.yml
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ jobs:
node-version-file: '.node-version'

- name: Build Server - Install dependencies
run: npm ci
run: npm ci --include=optional
working-directory: .

- name: Build Server - Clean previous build
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/copilot-setup-steps.yml
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ jobs:
node-version-file: '.node-version'

- name: Copilot Setup - Install dependencies
run: npm ci
run: npm ci --include=optional

- name: Copilot Setup - Setup CodeQL environment
uses: ./.github/actions/setup-codeql-environment
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,7 @@ jobs:
fi

- name: Release - Install dependencies
run: npm ci
run: npm ci --include=optional

- name: Release - Build server
run: npm run build -w server
Expand Down Expand Up @@ -152,7 +152,7 @@ jobs:

- name: Release - Install production dependencies
working-directory: dist-package/server
run: npm ci --omit=dev
run: npm ci --omit=dev --include=optional

- name: Release - Create archive
run: |
Expand Down
Loading