Skip to content

Add workflow to test setup-node@v6 version resolution#1

Closed
Copilot wants to merge 2 commits into
mainfrom
copilot/test-setup-node-version
Closed

Add workflow to test setup-node@v6 version resolution#1
Copilot wants to merge 2 commits into
mainfrom
copilot/test-setup-node-version

Conversation

Copilot AI commented Jan 31, 2026

Copy link
Copy Markdown

Tests what Node.js version gets installed when using latest or node specifiers with actions/setup-node@v6.

Changes

  • Add .github/workflows/test-setup-node.yml with matrix strategy for latest and node versions
  • Output installed Node.js and npm versions for comparison
  • Explicit contents: read permissions

Workflow

strategy:
  matrix:
    node-version: [latest, node]
steps:
  - uses: actions/setup-node@v6
    with:
      node-version: ${{ matrix.node-version }}
  - run: node --version && npm --version

Triggers on push and manual dispatch.


💬 We'd love your input! Share your thoughts on Copilot coding agent in our 2 minute survey.

Co-authored-by: PonomareVlad <2877584+PonomareVlad@users.noreply.github.com>
Copilot AI changed the title [WIP] Add action to setup Node.js version testing Add workflow to test setup-node@v6 version resolution Jan 31, 2026
Copilot AI requested a review from PonomareVlad January 31, 2026 18:06
@yurkimus yurkimus closed this Mar 12, 2026
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

3 participants