chore: import upstream snapshot with attribution

This commit is contained in:
wehub-resource-sync
2026-07-13 13:22:34 +08:00
commit 4b22cfda96
9037 changed files with 2363717 additions and 0 deletions
+19
View File
@@ -0,0 +1,19 @@
name: "setup-node"
description: "Set up Node"
inputs:
node-version:
description: "Node version to use."
default: "24"
required: false
runs:
using: "composite"
steps:
- uses: actions/setup-node@53b83947a5a98c8d113130e565377fae1a50d02f # v6.3.0
with:
node-version: ${{ inputs.node-version }}
- run: |
# allowScripts opt-in install-script policy requires npm >= 11.16.0
# (https://github.com/npm/cli/pull/9360)
npm install -g npm@"^11.16.0"
shell: bash