Passer au contenu principal

Github Actions

If your repository is hosted on Github, you can use Github Actions to run your tests on Github's infrastructure.

  1. every time you push changes
  2. à chaque création de pull request
  3. heure programmé
  4. 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.

Welcome! How can I help?

WebdriverIO AI Copilot