Skip to content

Instantly share code, notes, and snippets.

View camfou's full-sized avatar

Camille Foubert camfou

View GitHub Profile
#!/usr/bin/env bash
shopt -s nocasematch
set -e
set -o pipefail
npm run test
FIX_PATTERN="*Fix*"
MASTER_BRANCH="master"
@camfou
camfou / npm_release.sh
Last active December 23, 2016 15:43 — forked from alinglet/npm_release.sh
#!/usr/bin/env bash
shopt -s nocasematch
set -e
set -o pipefail
FIX_BRANCH_PATTERN="fix_*"
FEATURE_BRANCH_PATTERN="feature_*"
MASTER_BRANCH="master"
CI_SKIP="[ci skip]"