mirror of
https://github.com/actions/node-versions.git
synced 2025-08-25 04:18:48 +08:00
Compare commits
31 Commits
20.6.1-614
...
arm64-test
Author | SHA1 | Date | |
---|---|---|---|
![]() |
4c561dc48e | ||
![]() |
b1128b6a7d | ||
![]() |
4e9fd7825b | ||
![]() |
ec09b8ed02 | ||
![]() |
22b86c61f6 | ||
![]() |
ee011d651d | ||
![]() |
f33462c8a2 | ||
![]() |
b8355a0fcc | ||
![]() |
d2561554de | ||
![]() |
ab329f0180 | ||
![]() |
cb84d2280a | ||
![]() |
a26a00efbb | ||
![]() |
386b5d6f78 | ||
![]() |
fb3241c6f2 | ||
![]() |
c88b3f72e2 | ||
![]() |
6c82900b55 | ||
![]() |
de463ffcdb | ||
![]() |
d51fc26ff7 | ||
![]() |
fee25d72a2 | ||
![]() |
bb598e8c31 | ||
![]() |
a798c8ed46 | ||
![]() |
9d10c5b01a | ||
![]() |
a4a2f9a437 | ||
![]() |
3d5333b8c1 | ||
![]() |
897b0a01fc | ||
![]() |
605dcd4078 | ||
![]() |
705d5d4eb2 | ||
![]() |
aa0c3a667a | ||
![]() |
989324aed0 | ||
![]() |
59fe4e7639 | ||
![]() |
5bebf2b61c |
2
.github/workflows/build-node-packages.yml
vendored
2
.github/workflows/build-node-packages.yml
vendored
@@ -28,4 +28,4 @@ jobs:
|
||||
tool-name: "node"
|
||||
tool-version: ${{ inputs.VERSION || '18.12.0' }}
|
||||
publish-release: ${{ inputs.PUBLISH_RELEASES || false }}
|
||||
secrets: inherit
|
||||
secrets: inherit
|
||||
|
@@ -11,5 +11,8 @@ Latest of LTS versions will be installed on the [runner-images](https://github.c
|
||||
## Adding new versions
|
||||
We are trying to prepare packages for new versions of Node.js as soon as they are released. Please open an issue in [actions/runner-images](https://github.com/actions/runner-images) if any versions are missing.
|
||||
|
||||
## Support Notification Policy
|
||||
Beginning **approximately six months prior** to the removal of a Node.js version from the [versions-manifest.json](https://github.com/actions/node-versions/blob/main/versions-manifest.json) file, a pinned issue will be created in the [setup-node](https://github.com/actions/setup-node) repository. This pinned issue will provide important details about the upcoming end of support, including the specific date, as well as any other notes, relevant updates or alternatives. We encourage users to regularly check pinned issues for updates on tool versions they are using for maximum transparency, security, performance and overall compatibility with their projects.
|
||||
|
||||
## Contribution
|
||||
Contributions are welcome! See [Contributor's Guide](./CONTRIBUTING.md) for more details about contribution process and code structure
|
||||
|
@@ -54,7 +54,7 @@ class NixNodeBuilder : NodeBuilder {
|
||||
$installationTemplateLocation = Join-Path -Path $this.InstallationTemplatesLocation -ChildPath $this.InstallationTemplateName
|
||||
|
||||
$installationTemplateContent = Get-Content -Path $installationTemplateLocation -Raw
|
||||
$installationTemplateContent = $installationTemplateContent -f $this.Version.ToString(3)
|
||||
$installationTemplateContent = $installationTemplateContent -f $this.Version.ToString(3), $this.Architecture
|
||||
$installationTemplateContent | Out-File -FilePath $installationScriptLocation
|
||||
|
||||
Write-Debug "Done; Installation script location: $installationScriptLocation)"
|
||||
|
2
helpers
2
helpers
Submodule helpers updated: b964a9871b...6fbb1f0f20
@@ -1,10 +1,11 @@
|
||||
set -e
|
||||
|
||||
NODE_VERSION={0}
|
||||
ARCH={1}
|
||||
|
||||
NODE_TOOLCACHE_PATH=$AGENT_TOOLSDIRECTORY/node
|
||||
NODE_TOOLCACHE_VERSION_PATH=$NODE_TOOLCACHE_PATH/$NODE_VERSION
|
||||
NODE_TOOLCACHE_VERSION_ARCH_PATH=$NODE_TOOLCACHE_VERSION_PATH/x64
|
||||
NODE_TOOLCACHE_VERSION_ARCH_PATH=$NODE_TOOLCACHE_VERSION_PATH/$ARCH
|
||||
|
||||
echo "Check if Node.js hostedtoolcache folder exist..."
|
||||
if [ ! -d $NODE_TOOLCACHE_PATH ]; then
|
||||
@@ -22,4 +23,4 @@ cp -R ./* $NODE_TOOLCACHE_VERSION_ARCH_PATH
|
||||
rm $NODE_TOOLCACHE_VERSION_ARCH_PATH/setup.sh
|
||||
|
||||
echo "Create complete file"
|
||||
touch $NODE_TOOLCACHE_VERSION_PATH/x64.complete
|
||||
touch $NODE_TOOLCACHE_VERSION_PATH/$ARCH.complete
|
||||
|
@@ -35,14 +35,24 @@ Describe "Node.js" {
|
||||
}
|
||||
|
||||
It "cached version is used without downloading" {
|
||||
# Analyze output of previous steps to check if Node.js was consumed from cache or downloaded
|
||||
$useNodeLogFile = Get-UseNodeLogs
|
||||
$useNodeLogFile | Should -Exist
|
||||
$useNodeLogContent = Get-Content $useNodeLogFile -Raw
|
||||
$useNodeLogContent | Should -Match "Found in cache"
|
||||
if ($env:RUNNER_TYPE -eq "GitHub") {
|
||||
# Analyze output of previous steps to check if Node.js was consumed from cache or downloaded
|
||||
$useNodeLogFile = Get-UseNodeLogs
|
||||
$useNodeLogFile | Should -Exist
|
||||
$useNodeLogContent = Get-Content $useNodeLogFile -Raw
|
||||
$useNodeLogContent | Should -Match "Found in cache"
|
||||
} else {
|
||||
# Get the installed version of Node.js
|
||||
$nodeVersion = Invoke-Expression "node --version"
|
||||
# Check if Node.js is installed
|
||||
$nodeVersion | Should -Not -BeNullOrEmpty
|
||||
# Check if the installed version of Node.js is the expected version
|
||||
$nodeVersion | Should -Match $env:VERSION
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
It "Run simple code" {
|
||||
"node ./simple-test.js" | Should -ReturnZeroExitCode
|
||||
}
|
||||
}
|
||||
}
|
||||
|
File diff suppressed because it is too large
Load Diff
Reference in New Issue
Block a user