mirror of
https://github.com/shimataro/ssh-key-action.git
synced 2025-06-19 22:52:10 +10:00

* * refactor create-release-branch.sh * * refactor rebuild.sh * * refactor update-dependencies.sh
11 lines
163 B
Bash
Executable file
11 lines
163 B
Bash
Executable file
#!/bin/bash
|
|
|
|
set -e
|
|
|
|
rm -rf node_modules package-lock.json
|
|
npm i
|
|
npm run build
|
|
npm run verify
|
|
|
|
npm ci --only=production
|
|
git add node_modules package-lock.json lib
|