Skip to content

Commit f76493f

Browse files
authored
Add Node.js setup to PR label and assign workflow
Added setup for Node.js environment in PR workflow.
1 parent 13eddd7 commit f76493f

File tree

1 file changed

+31
-0
lines changed

1 file changed

+31
-0
lines changed

.github/workflows/pr-label-assign.yml

Lines changed: 31 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
tab
12
name: PR - Label and assign
23

34
# **What it does**: Labels PRs with size and associated products. Updates assignees to match our CODEOWNERS file.
@@ -52,3 +53,33 @@ jobs:
5253
with:
5354
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
5455
continue-on-error: true
56+
- name: Setup Node.js environment
57+
uses: actions/[email protected]
58+
with:
59+
# Set always-auth in npmrc.
60+
always-auth: # optional, default is false
61+
# Version Spec of the version to use. Examples: 12.x, 10.15.1, >=10.15.0.
62+
node-version: # optional
63+
# File containing the version Spec of the version to use. Examples: package.json, .nvmrc, .node-version, .tool-versions.
64+
node-version-file: # optional
65+
# Target architecture for Node to use. Examples: x86, x64. Will use system architecture by default.
66+
architecture: # optional
67+
# Set this option if you want the action to check for the latest available version that satisfies the version spec.
68+
check-latest: # optional
69+
# Optional registry to set up for auth. Will set the registry in a project level .npmrc and .yarnrc file, and set up auth to read in from env.NODE_AUTH_TOKEN.
70+
registry-url: # optional
71+
# Optional scope for authenticating against scoped registries. Will fall back to the repository owner when using the GitHub Packages registry (https://npm.pkg.github.com/).
72+
scope: # optional
73+
# Used to pull node distributions from node-versions. Since there's a default, this is typically not supplied by the user. When running this action on github.com, the default value is sufficient. When running on GHES, you can pass a personal access token for github.com if you are experiencing rate limiting.
74+
token: # optional, default is ${{ github.server_url == 'https://github.com' && github.token || '' }}
75+
# Used to specify a package manager for caching in the default directory. Supported values: npm, yarn, pnpm.
76+
cache: # optional
77+
# Set to false to disable automatic caching. By default, caching is enabled when either devEngines.packageManager or the top-level packageManager field in package.json specifies npm as the package manager.
78+
package-manager-cache: # optional, default is true
79+
# Used to specify the path to a dependency file: package-lock.json, yarn.lock, etc. Supports wildcards or a list of file names for caching multiple dependencies.
80+
cache-dependency-path: # optional
81+
# Used to specify an alternative mirror to downlooad Node.js binaries from
82+
mirror: # optional
83+
# The token used as Authorization header when fetching from the mirror
84+
mirror-token: # optional
85+

0 commit comments

Comments
 (0)