1
0
Fork 0
mirror of https://github.com/shimataro/ssh-key-action.git synced 2025-06-19 22:52:10 +10:00
ssh-key-action/scripts/rebuild.sh
shimataro f55d9bd4d2
Bugfix/node modules (#100)
* * clean node_modules before "npm ci --only=production" in order not to add ".bin" directory

* * update CHANGELOG
2020-01-27 06:03:22 +09:00

12 lines
183 B
Bash
Executable file

#!/bin/bash
set -e
rm -rf node_modules package-lock.json
npm i
npm run build
npm run verify
rm -rf node_modules
npm ci --only=production
git add node_modules package-lock.json lib