mirror of
https://github.com/valitydev/swag-wallets.git
synced 2024-11-06 02:45:19 +00:00
36bd187439
* chore: Add package-lock.json * ci: Add Github Actions for build and release * ci: remove wercker * feat: Enable Mattermost notifications * feat: Better formatting for MM * fix * fix if on mm * fix typo * fix shell bug * fix backticks * probly fix event * fix comma typos * fix pr info in a message * experimental curl notifier * fix script typos * fix: Add --fail to curl * Enable cache again * empty commit for test * Refactor message generation * fix indent * remove --fail from curl * fix curl error handling * curl: Add redirect flag * fix json typo * add debug print * hack real name * did GA break? * put real name back * final polishing * try out release notification * fix indent * fix * fix curl * fix * fix formatting * fix format * fix channel * final format * final cleanup * fix: Fix release repo name * fix: Switch to WALLETS_API_DEPLOY_KEY * switch to github-pages-deploy-action, fix MM hook for build pipeline * refactor curl * debug build pipeline * debug without pipefail * fix typo * more debug * fix curl error handling * Update .github/workflows/release.yml Co-authored-by: Alexey Pronin <24279065+vulnbe@users.noreply.github.com> Co-authored-by: Alexey Pronin <24279065+vulnbe@users.noreply.github.com>
17 lines
187 B
Makefile
17 lines
187 B
Makefile
all: build
|
|
|
|
.PHONY: install
|
|
install: node_modules
|
|
|
|
.PHONY: build
|
|
build: install
|
|
npm run build
|
|
|
|
.PHONY: start
|
|
start: install
|
|
npm start
|
|
|
|
node_modules: package.json
|
|
npm install
|
|
touch $@
|