Skip to content

Commit 8a4d8b5

Browse files
Copilotfregante
andcommitted
Add actions/setup-node to esm-lint Pack job only
- Added actions/setup-node@v6 with node-version-file: package.json to the Pack job in esm-lint.yml - This ensures the Pack job uses Node 22.18+ as required for native TypeScript execution - Other jobs in esm-lint.yml remain unchanged as they download the pre-built artifact - Lint job in ci.yml already has setup-node configured correctly Co-authored-by: fregante <1402241+fregante@users.noreply.github.com>
1 parent 3e9eb42 commit 8a4d8b5

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

.github/workflows/esm-lint.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,9 @@ jobs:
1919
runs-on: ubuntu-latest
2020
steps:
2121
- uses: actions/checkout@v6
22+
- uses: actions/setup-node@v6
23+
with:
24+
node-version-file: package.json
2225
- run: npm install
2326
- run: npm run build --if-present
2427
- run: npm pack --dry-run

0 commit comments

Comments
 (0)