Apps (Coming Soon) 20 / 32
GitHub Action Workflow
DevDojo Auth ships with a GitHub Action that helps guarantee your authentication is fully functional.
This package includes a GitHub Action workflow that helps you ensure your authentication is fully functional. This action will run every time you make a new pull request to be merged into the main branch. If all the checks pass in the workflow, you know that your authentication is fully operational.
Publish the CI Workflow File
In order to get the GitHub Action published to your project you will need to run the following command:
php artisan vendor:publish --tag=auth:ci
This will place a new file inside your application at .github/workflows/auth.yml.
Workflow Errors
If you receive authentication errors when pushing new code, you may want to run the tests locally so you can debug what is going on. Run the following command:
./vendor/bin/pest ./vendor/devdojo/auth/tests
This will attempt to run the auth tests locally.
Troubleshooting
If you find an error in the CI workflow you may open an issue on GitHub; however, if the issue is related directly to your specific setup we may end up closing the issue, as it might be out of scope for the support we'll provide.