Skip to content

Commit

Permalink
add npm install to build script
Browse files Browse the repository at this point in the history
  • Loading branch information
DougDyreng committed Aug 6, 2024
1 parent f7abc27 commit f0ca102
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
"description": "Restore a cache without saving it post-job ",
"main": "dist/index.js",
"scripts": {
"build": "npm ci && ncc build -o dist src/main.js && npm run format && git add dist/*",
"build": "npm ci && npm install && ncc build -o dist src/main.js && npm run format && git add dist/*",
"format": "prettier --write **/*.js",
"format-check": "prettier --check **/*.js"
},
Expand Down

0 comments on commit f0ca102

Please sign in to comment.