Delete cypress/videos/1-getting-started directory #8
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Integração Contínua | |
on: | |
push: | |
branches: | |
- main | |
jobs: | |
build: | |
runs-on: ubuntu-20.04 | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v2 | |
- name: Setup Node.js | |
uses: actions/setup-node@v2 | |
with: | |
node-version: '18' | |
- name: Instalar Dependências | |
run: | | |
npm ci | |
npm install -g nodemon | |
- name: Iniciar Aplicação com Nodemon | |
run: nodemon index.js & | |
- name: Esperar a Inicialização | |
run: sleep 10 | |
- name: Rodar Testes | |
run: npm run test |