Skip to content

Commit

Permalink
update do projeto
Browse files Browse the repository at this point in the history
  • Loading branch information
andersonvilarins committed May 3, 2024
1 parent 313ba7c commit a68f3f8
Show file tree
Hide file tree
Showing 3 changed files with 85 additions and 3 deletions.
67 changes: 67 additions & 0 deletions .github/workflows/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

5 changes: 5 additions & 0 deletions .github/workflows/package.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
{
"dependencies": {
"@playwright/test": "^1.43.1"
}
}
16 changes: 13 additions & 3 deletions .github/workflows/pipeline.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -13,11 +13,21 @@ jobs:
uses: actions/setup-python@v5
with:
python-version: '3.11'

- name: Instalar o NodeJS
uses: actions/setup-node@v4
with:
node-version: '18'

- name: Instalar as Bibliotecas do projeto
run: |
pip install -r requirements.txt
python -m pip install --upgrade pip
pip install -U -r requirements.txt
sudo npm install @playwright/test
sudo npx playwright install-deps
rfbrowser init
- name: Execução dos testes
run: |
robot -d results tests
robot -d ./results -v HEADLESS:true tests

0 comments on commit a68f3f8

Please sign in to comment.