We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 644304b + 46273c2 commit 5f1798eCopy full SHA for 5f1798e
1 file changed
action.yml
@@ -434,8 +434,12 @@ runs:
434
yarn install
435
yarn build
436
437
- # Only add client files
+ # Only add client files and yarn.lock so that any other unmerged
438
+ # files are detected later and the job will fail
439
+ # Note that adding yarn.lock when it has no changes is safe and
440
+ # will not result in an error i.e. `echo $?` be "0"
441
git add client/dist
442
+ git add yarn.lock
443
fi
444
445
# See https://git-scm.com/docs/git-status#_output for information on the porcelain format
0 commit comments