Adiciona padronização de inputs e mensagens de erro #47
Workflow file for this run
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: CI Pipeline Frontend | |
on: push | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout ✅ | |
uses: actions/checkout@v3 | |
- name: Setup 🏗 | |
uses: actions/setup-node@v2 | |
with: | |
node-version: lts/* | |
cache: 'npm' | |
- name: Install ⚙️ | |
run: npm install | |
- name: Build 🛠 | |
run: npm run build | |
- name: Test 📋 | |
run: npm run test:prod |