4
0
Fork 0
mirror of https://github.com/Azure/setup-helm.git synced 2025-11-07 21:16:57 +00:00

run to index

This commit is contained in:
David Gamero 2022-02-08 16:57:04 -05:00
parent 2998c83e16
commit 8cf628d907
2 changed files with 4 additions and 3 deletions

View file

@ -22,6 +22,7 @@ jobs:
echo $PR_BASE_REF echo $PR_BASE_REF
if [[ $PR_BASE_REF != releases/* ]]; then if [[ $PR_BASE_REF != releases/* ]]; then
npm install npm install
npm i -g @vercel/ncc
npm run build npm run build
fi fi
- name: Setup helm - name: Setup helm

View file

@ -13,9 +13,9 @@
"@octokit/graphql": "^4.6.1", "@octokit/graphql": "^4.6.1",
"semver": "^6.1.0" "semver": "^6.1.0"
}, },
"main": "lib/run.js", "main": "lib/index.js",
"scripts": { "scripts": {
"build": "tsc --outDir ./lib --rootDir ./src", "build": "ncc build src/run.ts -o lib",
"test": "jest", "test": "jest",
"test-coverage": "jest --coverage" "test-coverage": "jest --coverage"
}, },
@ -26,4 +26,4 @@
"@types/jest": "^25.2.2", "@types/jest": "^25.2.2",
"ts-jest": "^25.5.1" "ts-jest": "^25.5.1"
} }
} }