We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e35afe2 commit e7e98a1Copy full SHA for e7e98a1
2 files changed
.github/workflows/patch-version-bump.yml
@@ -18,6 +18,7 @@ jobs:
18
git status
19
phoenix_version=`node -p "require('./package.json').apiVersion"`
20
echo "PHOENIX_VERSION=${phoenix_version}" >> $GITHUB_ENV
21
+ echo "SKIP_TEST_RUN_GITHUB=yes" >> $GITHUB_ENV
22
shell: bash
23
24
- name: Create Bump patch version Pull Request
.husky/pre-push
@@ -2,4 +2,8 @@
2
. "$(dirname "$0")/_/husky.sh"
3
4
npm run build
5
-npm run test
+if [[ -z "${SKIP_TEST_RUN_GITHUB}" ]]; then
6
+ npm run test
7
+else
8
+ echo "skipping test run as GitHub Actions environment test run skip is set"
9
+fi
0 commit comments