Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Error al correr Pruebas automatizadas GitHub Actions #1

Open
OmarVenturaP opened this issue May 10, 2022 · 0 comments
Open

Error al correr Pruebas automatizadas GitHub Actions #1

OmarVenturaP opened this issue May 10, 2022 · 0 comments
Assignees
Labels
documentation Improvements or additions to documentation

Comments

@OmarVenturaP
Copy link
Owner

OmarVenturaP commented May 10, 2022

Al principio al realizar la automatización en el Repositorio de Github, lamentablemente me generaba problemas, ya que no me corría de manera correcta.

Mi código en test.yml lo tenía de la siguiente forma:

name: Run Tests in my project every push on GitHub

on: [push]

jobs:
  build:
    runs-on: ubuntu-latest
    steps:
    - uses: actions/checkout@v1
    - name: Run Jest
      uses: stefanoeb/[email protected]

Después de investigar un poco y hacer unas preguntas en el apartado de Discussions en la organización de LaunchX y obtuve una guía sobre como funcionaria en Windows. El cual queda de la siguiente forma:

name: CI
on: [push]
jobs:
  build:
    runs-on: ubuntu-latest
    steps:
    - uses: actions/checkout@v2
    - name: Install modules
      run: yarn
    - name: Run test
      run: yarn test

De esta forma y como lo registré en el Commit 8d2e92a311fac585c370bd620e94724409a17936 - "Paso 13) Modificando archivo GitHub Actions para automatización de pruebas en GitHub" se pudo correr bien el archivo test.yml y a partir de ese momento todas las automatizaciones de GitHub Actions corrieron de forma correcta.

@OmarVenturaP OmarVenturaP added the documentation Improvements or additions to documentation label May 10, 2022
@OmarVenturaP OmarVenturaP self-assigned this May 10, 2022
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
documentation Improvements or additions to documentation
Projects
None yet
Development

No branches or pull requests

1 participant