mirror of
https://github.com/actions/setup-dotnet.git
synced 2025-08-15 21:25:12 +00:00
Bump Node.js version to 24 in workflows, action metadata, and engines. Update TypeScript target to ES2022 and use native async/await instead of __awaiter in compiled JS. Upgrade @types/node to 24.1.0 and update undici-types. Remove legacy async helpers and refactor code for improved readability and compatibility with modern Node.js.
20 lines
341 B
YAML
20 lines
341 B
YAML
name: Basic validation
|
|
|
|
on:
|
|
pull_request:
|
|
paths-ignore:
|
|
- '**.md'
|
|
push:
|
|
branches:
|
|
- main
|
|
- releases/*
|
|
paths-ignore:
|
|
- '**.md'
|
|
|
|
jobs:
|
|
call-basic-validation:
|
|
name: Basic validation
|
|
uses: actions/reusable-workflows/.github/workflows/basic-validation.yml@main
|
|
with:
|
|
node-version: '24'
|