diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 30a4bc1..7b7b844 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -22,15 +22,13 @@ jobs: # Steps represent a sequence of tasks that will be executed as part of the job steps: - # Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it - - uses: actions/checkout@v2 - - # Runs a single command using the runners shell - - name: Run a one-line script - run: echo Hello, world! - - # Runs a set of commands using the runners shell - - name: Run a multi-line script - run: | - echo Add other actions to build, - echo test, and deploy your project. + - name: Checkout private tools + uses: actions/checkout@v2 + with: + repository: DiegoFernandesQA/Cypress + + - name: Install dependencies + run: npm install +# token: ${{ secrets.GITHUB_TOKEN }} + - name: Executar testes + run: npm run cy:run