File tree Expand file tree Collapse file tree 3 files changed +6
-1
lines changed
Expand file tree Collapse file tree 3 files changed +6
-1
lines changed Original file line number Diff line number Diff line change 3333 version : npm run version
3434 publish : npm run publish
3535 env :
36+ SKIP_HOOKS : true
3637 GITHUB_TOKEN : ${{ secrets.GITHUB_TOKEN }}
3738 NPM_TOKEN : ' '
Original file line number Diff line number Diff line change @@ -6,7 +6,7 @@ FILES=$(git diff --cached --name-only --diff-filter=ACMR | sed 's| |\\ |g')
66
77git stash --keep-index --include-untracked -q
88cleanup () {
9- git stash pop -q 2> /dev/null || true
9+ git stash pop -q 2> /dev/null || true
1010}
1111trap cleanup EXIT
1212
Original file line number Diff line number Diff line change 11#! /usr/bin/env bash
22set -euo pipefail
33
4+ if [[ " ${SKIP_HOOKS:- } " == " true" ]]; then
5+ exit 0
6+ fi
7+
48npx turbo run build --filter=...[origin/main]
59
610npx turbo run test --filter=...[origin/main]
You can’t perform that action at this time.
0 commit comments