We've been delaying finalizing the v2 release because we wanted to include tests but unfortunately it looks like we'll need to wrap this up for now and add tests (with proper mocking of package registry and octokit) at a later date.
Every action in v2 has been refactored to be very similar to v1 (in the way it's used in the workflow) so as long as you follow the readmes when upgrading from v1 to v2, you should be fine.
Here are all the pull requests that were involved in refactoring the bash actions to node:
These readme links won't be up to date until after this PR is merged
This PR will resolve #68 🥹
Approach
Updated all readmes
Removed the synchronize-npm-tags and preview workflows that I was using to manually test the actions
Deleted the yarn action. This action was originally created to fail a workflow if there were any warnings but it's redundant now as this can be done by modifying our effection exec (for yarn install) from join to expect
Motivation
We've been delaying finalizing the
v2
release because we wanted to include tests but unfortunately it looks like we'll need to wrap this up for now and add tests (with proper mocking of package registry and octokit) at a later date.Every action in
v2
has been refactored to be very similar tov1
(in the way it's used in the workflow) so as long as you follow the readmes when upgrading fromv1
tov2
, you should be fine.Here are all the pull requests that were involved in refactoring the bash actions to node:
publish-pr-preview
synchronize-npm-tags
synchronize-with-npm
These readme links won't be up to date until after this PR is merged
This PR will resolve #68 🥹
Approach
synchronize-npm-tags
andpreview
workflows that I was using to manually test the actionsyarn
action. This action was originally created to fail a workflow if there were any warnings but it's redundant now as this can be done by modifying our effection exec (for yarn install) fromjoin
toexpect