mirror of
https://github.com/actions/javascript-action.git
synced 2025-04-06 15:29:40 +00:00
Fixes up issues with the template (#36)
* #27 remove console.log * #16 change author to empty * #30 maintain this repo 😄 * #8 jest update for eslint * update dependencies * #22 generate source maps * #21 use prepare instead of package * add `npm run all` to run everything
This commit is contained in:
@ -2,6 +2,7 @@
|
|||||||
"env": {
|
"env": {
|
||||||
"commonjs": true,
|
"commonjs": true,
|
||||||
"es6": true,
|
"es6": true,
|
||||||
|
"jest": true,
|
||||||
"node": true
|
"node": true
|
||||||
},
|
},
|
||||||
"extends": "eslint:recommended",
|
"extends": "eslint:recommended",
|
||||||
|
@ -70,10 +70,10 @@ GitHub Actions will run the entry point from the action.yml. Packaging assembles
|
|||||||
|
|
||||||
Actions are run from GitHub repos. Packaging the action will create a packaged action in the dist folder.
|
Actions are run from GitHub repos. Packaging the action will create a packaged action in the dist folder.
|
||||||
|
|
||||||
Run package
|
Run prepare
|
||||||
|
|
||||||
```bash
|
```bash
|
||||||
npm run package
|
npm run prepare
|
||||||
```
|
```
|
||||||
|
|
||||||
Since the packaged index.js is run from the dist folder.
|
Since the packaged index.js is run from the dist folder.
|
||||||
|
21
dist/index.js
vendored
21
dist/index.js
vendored
@ -1,4 +1,4 @@
|
|||||||
module.exports =
|
require('./sourcemap-register.js');module.exports =
|
||||||
/******/ (function(modules, runtime) { // webpackBootstrap
|
/******/ (function(modules, runtime) { // webpackBootstrap
|
||||||
/******/ "use strict";
|
/******/ "use strict";
|
||||||
/******/ // The module cache
|
/******/ // The module cache
|
||||||
@ -19,7 +19,13 @@ module.exports =
|
|||||||
/******/ };
|
/******/ };
|
||||||
/******/
|
/******/
|
||||||
/******/ // Execute the module function
|
/******/ // Execute the module function
|
||||||
/******/ modules[moduleId].call(module.exports, module, module.exports, __webpack_require__);
|
/******/ var threw = true;
|
||||||
|
/******/ try {
|
||||||
|
/******/ modules[moduleId].call(module.exports, module, module.exports, __webpack_require__);
|
||||||
|
/******/ threw = false;
|
||||||
|
/******/ } finally {
|
||||||
|
/******/ if(threw) delete installedModules[moduleId];
|
||||||
|
/******/ }
|
||||||
/******/
|
/******/
|
||||||
/******/ // Flag the module as loaded
|
/******/ // Flag the module as loaded
|
||||||
/******/ module.l = true;
|
/******/ module.l = true;
|
||||||
@ -61,11 +67,11 @@ const wait = __webpack_require__(949);
|
|||||||
async function run() {
|
async function run() {
|
||||||
try {
|
try {
|
||||||
const ms = core.getInput('milliseconds');
|
const ms = core.getInput('milliseconds');
|
||||||
console.log(`Waiting ${ms} milliseconds ...`)
|
core.info(`Waiting ${ms} milliseconds ...`)
|
||||||
|
|
||||||
core.debug((new Date()).toTimeString())
|
core.debug((new Date()).toTimeString()) // debug is only output if you set the secret `ACTIONS_RUNNER_DEBUG` to true
|
||||||
wait(parseInt(ms));
|
await wait(parseInt(ms));
|
||||||
core.debug((new Date()).toTimeString())
|
core.info((new Date()).toTimeString())
|
||||||
|
|
||||||
core.setOutput('time', new Date().toTimeString());
|
core.setOutput('time', new Date().toTimeString());
|
||||||
}
|
}
|
||||||
@ -361,4 +367,5 @@ module.exports = wait;
|
|||||||
|
|
||||||
/***/ })
|
/***/ })
|
||||||
|
|
||||||
/******/ });
|
/******/ });
|
||||||
|
//# sourceMappingURL=index.js.map
|
1
dist/index.js.map
vendored
Normal file
1
dist/index.js.map
vendored
Normal file
File diff suppressed because one or more lines are too long
3912
dist/sourcemap-register.js
vendored
Normal file
3912
dist/sourcemap-register.js
vendored
Normal file
File diff suppressed because it is too large
Load Diff
6
index.js
6
index.js
@ -6,11 +6,11 @@ const wait = require('./wait');
|
|||||||
async function run() {
|
async function run() {
|
||||||
try {
|
try {
|
||||||
const ms = core.getInput('milliseconds');
|
const ms = core.getInput('milliseconds');
|
||||||
console.log(`Waiting ${ms} milliseconds ...`)
|
core.info(`Waiting ${ms} milliseconds ...`)
|
||||||
|
|
||||||
core.debug((new Date()).toTimeString())
|
core.debug((new Date()).toTimeString()) // debug is only output if you set the secret `ACTIONS_RUNNER_DEBUG` to true
|
||||||
await wait(parseInt(ms));
|
await wait(parseInt(ms));
|
||||||
core.debug((new Date()).toTimeString())
|
core.info((new Date()).toTimeString())
|
||||||
|
|
||||||
core.setOutput('time', new Date().toTimeString());
|
core.setOutput('time', new Date().toTimeString());
|
||||||
}
|
}
|
||||||
|
4608
package-lock.json
generated
4608
package-lock.json
generated
File diff suppressed because it is too large
Load Diff
13
package.json
13
package.json
@ -5,8 +5,9 @@
|
|||||||
"main": "index.js",
|
"main": "index.js",
|
||||||
"scripts": {
|
"scripts": {
|
||||||
"lint": "eslint index.js",
|
"lint": "eslint index.js",
|
||||||
"package": "ncc build index.js -o dist",
|
"prepare": "ncc build index.js -o dist --source-map",
|
||||||
"test": "eslint index.js && jest"
|
"test": "jest",
|
||||||
|
"all": "npm run lint && npm run prepare && npm run test"
|
||||||
},
|
},
|
||||||
"repository": {
|
"repository": {
|
||||||
"type": "git",
|
"type": "git",
|
||||||
@ -17,7 +18,7 @@
|
|||||||
"Actions",
|
"Actions",
|
||||||
"JavaScript"
|
"JavaScript"
|
||||||
],
|
],
|
||||||
"author": "GitHub",
|
"author": "",
|
||||||
"license": "MIT",
|
"license": "MIT",
|
||||||
"bugs": {
|
"bugs": {
|
||||||
"url": "https://github.com/actions/javascript-action/issues"
|
"url": "https://github.com/actions/javascript-action/issues"
|
||||||
@ -27,8 +28,8 @@
|
|||||||
"@actions/core": "^1.1.1"
|
"@actions/core": "^1.1.1"
|
||||||
},
|
},
|
||||||
"devDependencies": {
|
"devDependencies": {
|
||||||
"@zeit/ncc": "^0.20.5",
|
"@zeit/ncc": "^0.22.3",
|
||||||
"eslint": "^6.3.0",
|
"eslint": "^7.4.0",
|
||||||
"jest": "^24.9.0"
|
"jest": "^26.1.0"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Reference in New Issue
Block a user