You've already forked setup-node
mirror of
https://github.com/actions/setup-node.git
synced 2025-07-20 22:03:25 +07:00
Compare commits
14 Commits
Author | SHA1 | Date | |
---|---|---|---|
4bb8c45053 | |||
a251a519bf | |||
44c9c18728 | |||
e715d9a456 | |||
b1f2e78536 | |||
55897e37f3 | |||
46903d1fb1 | |||
28505ad4d3 | |||
2d53d29868 | |||
1e163ded31 | |||
ffde538781 | |||
e99a7e62b2 | |||
0dc69b3a71 | |||
52eb8a7524 |
8
.github/workflows/workflow.yml
vendored
8
.github/workflows/workflow.yml
vendored
@ -28,7 +28,13 @@ jobs:
|
|||||||
run: __tests__/verify-no-unstaged-changes.sh
|
run: __tests__/verify-no-unstaged-changes.sh
|
||||||
|
|
||||||
test:
|
test:
|
||||||
runs-on: ubuntu-latest
|
runs-on: ${{ matrix.operating-system }}
|
||||||
|
strategy:
|
||||||
|
matrix:
|
||||||
|
operating-system: [ubuntu-latest, windows-latest]
|
||||||
|
defaults:
|
||||||
|
run:
|
||||||
|
shell: bash
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v2
|
- uses: actions/checkout@v2
|
||||||
- name: Clear tool cache
|
- name: Clear tool cache
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
# setup-node
|
# setup-node servicing v1
|
||||||
|
|
||||||
<p align="left">
|
<p align="left">
|
||||||
<a href="https://github.com/actions/setup-node"><img alt="GitHub Actions status" src="https://github.com/actions/setup-node/workflows/Main%20workflow/badge.svg"></a>
|
<a href="https://github.com/actions/setup-node"><img alt="GitHub Actions status" src="https://github.com/actions/setup-node/workflows/Main%20workflow/badge.svg"></a>
|
||||||
|
7
dist/index.js
vendored
7
dist/index.js
vendored
@ -15201,6 +15201,7 @@ var __importStar = (this && this.__importStar) || function (mod) {
|
|||||||
};
|
};
|
||||||
Object.defineProperty(exports, "__esModule", { value: true });
|
Object.defineProperty(exports, "__esModule", { value: true });
|
||||||
const core = __importStar(__webpack_require__(470));
|
const core = __importStar(__webpack_require__(470));
|
||||||
|
const exec = __importStar(__webpack_require__(986));
|
||||||
const installer = __importStar(__webpack_require__(749));
|
const installer = __importStar(__webpack_require__(749));
|
||||||
const auth = __importStar(__webpack_require__(202));
|
const auth = __importStar(__webpack_require__(202));
|
||||||
const path = __importStar(__webpack_require__(622));
|
const path = __importStar(__webpack_require__(622));
|
||||||
@ -15218,6 +15219,12 @@ function run() {
|
|||||||
if (version) {
|
if (version) {
|
||||||
yield installer.getNode(version);
|
yield installer.getNode(version);
|
||||||
}
|
}
|
||||||
|
// Output version of node and npm that are being used
|
||||||
|
yield exec.exec('node', ['--version']);
|
||||||
|
// Older versions of Node don't include npm, so don't let this call fail
|
||||||
|
yield exec.exec('npm', ['--version'], {
|
||||||
|
ignoreReturnCode: true
|
||||||
|
});
|
||||||
const registryUrl = core.getInput('registry-url');
|
const registryUrl = core.getInput('registry-url');
|
||||||
const alwaysAuth = core.getInput('always-auth');
|
const alwaysAuth = core.getInput('always-auth');
|
||||||
if (registryUrl) {
|
if (registryUrl) {
|
||||||
|
1278
dist/licenses.txt
vendored
Normal file
1278
dist/licenses.txt
vendored
Normal file
File diff suppressed because it is too large
Load Diff
@ -24,6 +24,7 @@
|
|||||||
"license": "MIT",
|
"license": "MIT",
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"@actions/core": "^1.2.2",
|
"@actions/core": "^1.2.2",
|
||||||
|
"@actions/exec": "^1.0.3",
|
||||||
"@actions/github": "^1.1.0",
|
"@actions/github": "^1.1.0",
|
||||||
"@actions/http-client": "^1.0.6",
|
"@actions/http-client": "^1.0.6",
|
||||||
"@actions/io": "^1.0.2",
|
"@actions/io": "^1.0.2",
|
||||||
|
@ -1,4 +1,6 @@
|
|||||||
import * as core from '@actions/core';
|
import * as core from '@actions/core';
|
||||||
|
import * as exec from '@actions/exec';
|
||||||
|
import * as io from '@actions/io';
|
||||||
import * as installer from './installer';
|
import * as installer from './installer';
|
||||||
import * as auth from './authutil';
|
import * as auth from './authutil';
|
||||||
import * as path from 'path';
|
import * as path from 'path';
|
||||||
@ -17,6 +19,14 @@ async function run() {
|
|||||||
await installer.getNode(version);
|
await installer.getNode(version);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// Output version of node and npm that are being used
|
||||||
|
await exec.exec('node', ['--version']);
|
||||||
|
|
||||||
|
// Older versions of Node don't include npm, so don't let this call fail
|
||||||
|
await exec.exec('npm', ['--version'], {
|
||||||
|
ignoreReturnCode: true
|
||||||
|
});
|
||||||
|
|
||||||
const registryUrl: string = core.getInput('registry-url');
|
const registryUrl: string = core.getInput('registry-url');
|
||||||
const alwaysAuth: string = core.getInput('always-auth');
|
const alwaysAuth: string = core.getInput('always-auth');
|
||||||
if (registryUrl) {
|
if (registryUrl) {
|
||||||
|
Reference in New Issue
Block a user