Skip to content

Commit ec7064d

Browse files
committed
refactor: remove redundant code as build already does lint
1 parent b97c040 commit ec7064d

File tree

4 files changed

+0
-8
lines changed

4 files changed

+0
-8
lines changed

.github/workflows/minor-version-bump.yml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,6 @@ jobs:
2222
git status
2323
phoenix_version=`node -p "require('./package.json').apiVersion"`
2424
echo "PHOENIX_VERSION=${phoenix_version}" >> $GITHUB_ENV
25-
echo "SKIP_TEST_RUN_GITHUB=yes" >> $GITHUB_ENV
2625
shell: bash
2726

2827
- name: Create Bump patch version Pull Request

.github/workflows/patch-version-bump.yml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,6 @@ jobs:
2222
git status
2323
phoenix_version=`node -p "require('./package.json').apiVersion"`
2424
echo "PHOENIX_VERSION=${phoenix_version}" >> $GITHUB_ENV
25-
echo "SKIP_TEST_RUN_GITHUB=yes" >> $GITHUB_ENV
2625
shell: bash
2726

2827
- name: Create Bump patch version Pull Request

.github/workflows/yearly-major-version-bump.yml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,6 @@ jobs:
1919
git status
2020
phoenix_version=`node -p "require('./package.json').apiVersion"`
2121
echo "PHOENIX_VERSION=${phoenix_version}" >> $GITHUB_ENV
22-
echo "SKIP_TEST_RUN_GITHUB=yes" >> $GITHUB_ENV
2322
shell: bash
2423

2524
- name: Create Bump patch version Pull Request

.husky/pre-push

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,3 @@
22
. "$(dirname "$0")/_/husky.sh"
33

44
npm run build
5-
if [ -z "${SKIP_TEST_RUN_GITHUB}" ]; then
6-
npm run lint
7-
else
8-
echo "skipping test run as GitHub Actions environment test run skip is set"
9-
fi

0 commit comments

Comments
 (0)