Skip to content
This repository was archived by the owner on Sep 19, 2026. It is now read-only.
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
36 changes: 18 additions & 18 deletions .github/workflows/smoke.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ jobs:
os: [ubuntu-latest, macos-latest, windows-latest]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v7

- name: setup-node (latest)
id: nub
Expand Down Expand Up @@ -57,7 +57,7 @@ jobs:
os: [ubuntu-latest, macos-latest, windows-latest]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v7
- uses: ./setup-node
with:
node-version: "20"
Expand Down Expand Up @@ -98,7 +98,7 @@ jobs:
os: [ubuntu-latest, macos-latest, windows-latest]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v7
- uses: actions/setup-node@v4
with:
node-version: "20"
Expand All @@ -120,7 +120,7 @@ jobs:
os: [ubuntu-latest, macos-latest, windows-latest]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v7
- uses: ./setup-node
- name: tiny fixture
shell: bash
Expand All @@ -141,7 +141,7 @@ jobs:
os: [ubuntu-latest, macos-latest, windows-latest]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v7
- name: fixture pinned to 20
shell: bash
# The action's Pre-provision step resolves the project pin (nub node which)
Expand All @@ -167,7 +167,7 @@ jobs:
os: [ubuntu-latest, macos-latest, windows-latest]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v7
- name: fixture pinned to 20 (no setup-node input)
shell: bash
# The eager-provision step resolves the project's own pin off disk at the
Expand Down Expand Up @@ -195,7 +195,7 @@ jobs:
os: [ubuntu-latest, macos-latest, windows-latest]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v7
- name: fixture with NO Node pin
shell: bash
# A package.json at the checkout root with no engines/devEngines and no
Expand Down Expand Up @@ -223,7 +223,7 @@ jobs:
os: [ubuntu-latest, macos-latest, windows-latest]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v7
- name: fixture
shell: bash
run: |
Expand Down Expand Up @@ -252,7 +252,7 @@ jobs:
os: [ubuntu-latest, macos-latest, windows-latest]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v7
- name: lockfile fixture (no cache input)
shell: bash
# A lockfile at the checkout root with NO cache input must auto-enable
Expand Down Expand Up @@ -283,7 +283,7 @@ jobs:
os: [ubuntu-latest, macos-latest, windows-latest]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v7
- name: lockfile fixture (would auto-enable)
shell: bash
run: |
Expand All @@ -310,7 +310,7 @@ jobs:
os: [ubuntu-latest, macos-latest, windows-latest]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v7
- uses: ./setup-node
with:
registry-url: "https://npm.pkg.github.com"
Expand All @@ -336,7 +336,7 @@ jobs:
os: [ubuntu-latest, macos-latest, windows-latest]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v7
- uses: ./setup-node
with:
# bare scope (no leading @, mixed case) against a path-bearing private
Expand All @@ -363,7 +363,7 @@ jobs:
os: [ubuntu-latest, macos-latest, windows-latest]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v7
- uses: ./setup-node
id: nub
with:
Expand All @@ -382,7 +382,7 @@ jobs:
os: [ubuntu-latest, macos-latest, windows-latest]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v7
- uses: ./setup-node
with:
node-version: "20"
Expand Down Expand Up @@ -411,7 +411,7 @@ jobs:
name: shim false leaves the runner's package managers alone
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v7
- uses: ./setup-node
with:
shim: false
Expand All @@ -430,7 +430,7 @@ jobs:
os: [ubuntu-latest, macos-latest, windows-latest]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v7
- name: pin the runner's own Node major
id: before
shell: bash
Expand All @@ -457,7 +457,7 @@ jobs:
name: newline-delimited cache-dependency-path keys the cache (ubuntu-latest)
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v7
- run: |
printf '{ "name": "multi", "version": "1.0.0" }\n' > package.json
echo "${{ github.run_id }}" > run.txt
Expand All @@ -481,7 +481,7 @@ jobs:
os: [ubuntu-latest, macos-latest, windows-latest]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v7
- uses: actions/setup-node@v4
with:
node-version: "20"
Expand Down
Loading