1
0
mirror of https://github.com/verdaccio/verdaccio.git synced 2024-11-13 03:35:52 +01:00
verdaccio/website/versioned_docs/version-5.x/github-actions.md
Juan Picado 0041d9407d
chore: add versioning website (#3320)
* chore: add versioning website

* Update docusaurus.config.js

* chore: updated versions

* Update docusaurus.config.js
2022-10-01 17:21:26 +02:00

1.0 KiB

id title
github-actions GitHub Actions

With GitHub Actions you can automate your workflow, each GitHub Action performs a specific step in a process.

actions

Testing your packages

Verdaccio provides a custom action for easy integration in your flow by adding the following to your workflow file's steps key.

- name: Publish with Verdaccio
  uses: verdaccio/github-actions/publish@master

The action will perform a npm publish and if the publishing finishes successfully, the workflow will continue to the next step, otherwise the step will fail. If there are any issues publishing a package you will notice using this action.

Within the image uses verdaccio-auth-memory and verdaccio-memory plugins to handle authentification and storage to speed up the process.

If you want to know more about the action, visit our repository dedicated for GitHub Actions.