Add testes #16
This file contains hidden or 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: CI Pipeline | |
| on: pull_request | |
| jobs: | |
| build: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Setup repo | |
| uses: actions/checkout@v4 | |
| - name: Setup Deno | |
| uses: denoland/setup-deno@61fe2df320078202e33d7d5ad347e7dcfa0e8f31 # v1.1.2 | |
| with: | |
| deno-version: v2.x | |
| - name: Setup Node.js | |
| uses: actions/setup-node@v3 | |
| with: | |
| node-version: "18" | |
| - name: Install Cypress | |
| run: npm install -g cypress | |
| - name: Add global npm bin to PATH | |
| run: echo "/opt/hostedtoolcache/node/18.20.5/x64/bin" >> $GITHUB_PATH # Adiciona o caminho ao PATH | |
| - name: Verify Cypress installation | |
| run: | | |
| echo "Cypress Path: $(which cypress)" # Verifica o caminho onde o Cypress está instalado | |
| echo "Cypress version: $(cypress --version)" # Verifica a versão do Cypress | |
| - name: Run tests | |
| run: npx cypress run |