Skip to content

Atualiza ações do github #27

Atualiza ações do github

Atualiza ações do github #27

Workflow file for this run

# This workflow will do a clean installation of node dependencies, cache/restore them, build the source code and run tests across different versions of node
# For more information see: https://help.github.com/actions/language-and-framework-guides/using-nodejs-with-github-actions
name: Teste de Unidade
on:
push:
branches: [ master, develop ]
pull_request:
branches: [ master, develop ]
jobs:
test:
timeout-minutes: 10
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: 20
cache: 'npm'
- name: Instalar dependências
run: npm ci
- name: eslint
run: npm run lint
- name: Instalar navegadores do Playwright
run: npx playwright install --with-deps
- name: Executar testes do Playwright
run: npx playwright test
- uses: actions/upload-artifact@v4
if: always()
with:
name: playwright-report
path: playwright-report/
retention-days: 30