Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

FIX Ensure yarn scripts exist before running them #3

Merged
merged 1 commit into from
Jul 7, 2022
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
23 changes: 15 additions & 8 deletions action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -190,14 +190,21 @@ runs:
yarn install --network-concurrency 1
cd ../../..
fi
yarn run build
echo "Running git diff"
git diff-files --quiet -w --relative=client
git diff --name-status --relative=client
echo "Running yarn test"
yarn run test
echo "Running yarn lint"
yarn run lint
if [[ $(cat package.json | jq -r '.scripts.build') != 'null' ]]; then
echo "Running yarn build"
yarn run build
echo "Running git diff"
git diff-files --quiet -w --relative=client
git diff --name-status --relative=client
fi
if [[ $(cat package.json | jq -r '.scripts.test') != 'null' ]]; then
echo "Running yarn test"
yarn run test
fi
if [[ $(cat package.json | jq -r '.scripts.lint') != 'null' ]]; then
echo "Running yarn lint"
yarn run lint
fi
echo "Passed"

- name: "Run PHP linting"
Expand Down