mirror of
https://github.com/gradle/gradle-build-action.git
synced 2024-11-22 17:12:51 +00:00
c211be411e
- Do not restore cache when GUH exists - Include RUNNER_OS in the cache key - Do not save cache on exact hit - Only save cache in the final post action - Log before saving cache
52 lines
1.4 KiB
JSON
52 lines
1.4 KiB
JSON
{
|
|
"name": "gradle-build-action",
|
|
"version": "1.0.0",
|
|
"private": true,
|
|
"description": "Execute Gradle Build",
|
|
"scripts": {
|
|
"format": "prettier --write **/*.ts",
|
|
"format-check": "prettier --check **/*.ts",
|
|
"lint": "eslint src/**/*.ts",
|
|
"build": "ncc build src/main.ts --out dist/main --minify && ncc build src/post.ts --out dist/post --minify",
|
|
"test": "jest",
|
|
"all": "npm run format && npm run lint && npm run build && npm test"
|
|
},
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "git+https://github.com/gradle/gradle-build-action.git"
|
|
},
|
|
"keywords": [
|
|
"github",
|
|
"actions",
|
|
"github-actions",
|
|
"gradle"
|
|
],
|
|
"author": "Paul Merlin <paul@nosphere.org>",
|
|
"license": "MIT",
|
|
"dependencies": {
|
|
"@actions/cache": "1.0.7",
|
|
"@actions/core": "1.4.0",
|
|
"@actions/exec": "1.1.0",
|
|
"@actions/github": "5.0.0",
|
|
"@actions/glob": "0.2.0",
|
|
"@actions/http-client": "1.0.11",
|
|
"@actions/tool-cache": "1.7.1",
|
|
"string-argv": "0.3.1"
|
|
},
|
|
"devDependencies": {
|
|
"@types/jest": "26.0.23",
|
|
"@types/node": "14.17.3",
|
|
"@types/unzipper": "0.10.4",
|
|
"@typescript-eslint/parser": "4.28.2",
|
|
"@zeit/ncc": "0.22.3",
|
|
"eslint": "7.30.0",
|
|
"eslint-plugin-github": "4.1.3",
|
|
"eslint-plugin-jest": "24.3.6",
|
|
"jest": "26.6.3",
|
|
"jest-circus": "26.6.3",
|
|
"js-yaml": "3.14.1",
|
|
"prettier": "2.3.2",
|
|
"ts-jest": "26.5.6",
|
|
"typescript": "4.3.5"
|
|
}
|
|
}
|