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: 2 additions & 0 deletions .devcontainer/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -103,7 +103,9 @@ INSTALL_DEV_UTILS

RUN bash <<'INSTALL_NPM_PACKAGES'
set -euo pipefail
npm update -g npm@^11.10.0
npm config set allow-scripts=@kilocode/cli --location=user
npm config set min-release-age=3 --location=user
npm install -g @kilocode/cli
INSTALL_NPM_PACKAGES

Expand Down
8 changes: 6 additions & 2 deletions .github/workflows/markdown-fix.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -103,10 +103,14 @@ jobs:
- name: Set up Node.js
uses: actions/setup-node@820762786026740c76f36085b0efc47a31fe5020 # v7.0.0
with:
node-version: "22"
node-version: "26"
package-manager-cache: false

- name: Install markdownlint-cli2
run: npm install -g markdownlint-cli2
run: |
npm update -g npm@^11.10.0
npm config set min-release-age=3 --location=user
npm install -g markdownlint-cli2

- name: Run markdownlint-cli2 fix
working-directory: ${{ needs.setup.outputs.checkout_path }}
Expand Down
8 changes: 6 additions & 2 deletions .github/workflows/yaml-fix.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -104,10 +104,14 @@ jobs:
- name: Setup Node.js
uses: actions/setup-node@820762786026740c76f36085b0efc47a31fe5020 # v7.0.0
with:
node-version: "22"
node-version: "26"
package-manager-cache: false

- name: Install prettier
run: npm install -g prettier
run: |
npm update -g npm@^11.10.0
npm config set min-release-age=3 --location=user
npm install -g prettier

- name: Apply YAML formatting
working-directory: ${{ needs.setup.outputs.checkout_path }}
Expand Down