Skip to content
Merged
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
27 changes: 14 additions & 13 deletions .github/workflows/jekyll-gh-pages.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,23 +23,24 @@ concurrency:
jobs:
# Build job
build:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v6
- name: Use Node.js 20
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
- name: Use Node.js ${{ matrix.node }}
Copy link

Copilot AI Dec 15, 2025

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The workflow references matrix.node but no matrix strategy is defined in the job configuration. This will cause the workflow to fail since the variable is undefined. Either add a matrix strategy definition or revert to the hardcoded node version.

Copilot uses AI. Check for mistakes.
uses: actions/setup-node@v6
with:
node-version: 20
- name: Update rush shrinkwrap dependencies (for different node versions)
node-version: ${{ matrix.node }}

- name: Update rush shrinkwrap dependencies
run: node common/scripts/install-run-rush.js update --full
- run: npm install rollup -g
- run: npm install grunt-cli
- run: npm install
- run: node common/scripts/install-run-rush.js check
- run: node common/scripts/install-run-rush.js install
- run: npm run build --verbose
Copy link

Copilot AI Dec 15, 2025

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Line contains trailing whitespace which should be removed to maintain clean YAML formatting.

Suggested change

Copilot uses AI. Check for mistakes.
- name: Npm Install
run: npm install

- name: Build
run: npm run build --verbose
timeout-minutes: 20

- name: Generate the current Docs
run: npm run docs
- name: Setup Pages
Expand Down