swag-wallets/Makefile
Yaroslav Rogov 36bd187439
Ci/GitHub actions (#92)
* 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>
2021-07-21 12:32:40 +03:00

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 $@