Implementation of caching functionality for setup-go action (#228)

This commit is contained in:
IvanZosimov
2022-05-25 12:07:29 +02:00
committed by GitHub
parent fcdc43634a
commit b22fbbc292
72 changed files with 126791 additions and 8387 deletions

View File

@ -5,7 +5,7 @@
"description": "setup go action",
"main": "lib/setup-go.js",
"scripts": {
"build": "tsc && ncc build",
"build": "tsc && ncc build -o dist/setup src/setup-go.ts && ncc build -o dist/cache-save src/cache-save.ts",
"format": "prettier --write **/*.ts",
"format-check": "prettier --check **/*.ts",
"test": "jest --coverage",
@ -23,7 +23,10 @@
"author": "GitHub",
"license": "MIT",
"dependencies": {
"@actions/cache": "^2.0.2",
"@actions/core": "^1.6.0",
"@actions/exec": "^1.1.0",
"@actions/glob": "^0.2.0",
"@actions/http-client": "^1.0.6",
"@actions/io": "^1.0.2",
"@actions/tool-cache": "^1.5.5",