Github Actions
If your repository is hosted on Github, you can use Github Actions to run your tests on Github's infrastructure.
- every time you push changes
- à chaque création de pull request
- heure programmé
- lancement manuel
À la racine de votre dépôt, créez un répertoire .github/workflows
. Ajouter un fichier Yaml, par exemple .github/workflows/ci.yaml
. Ici, vous allez configurer comment exécuter vos tests.
Voir jasmine-boilerplate pour l'implémentation de référence, et les essais d'échantillon.
.github/workflows/ci.yaml
loading...
Find out in the Github Docs on more information about creating workflow files.