feature pipeline: adicionando caminho para executar teste no pipeline… #5
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: FRONTEND CI/CD | |
on: | |
push: | |
branches: | |
- frontend | |
pull_request: | |
branches: | |
- frontend | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout Repository | |
uses: actions/checkout@v3 | |
- name: Set up Node.js | |
uses: actions/setup-node@v3 | |
with: | |
node-version: '14' | |
- name: Install Dependencies and Build | |
run: | | |
npm install -g @vue/[email protected] | |
# Verificar o diretório de trabalho atual | |
if [ -d "frontend-app" ]; then | |
cd frontend-app | |
npm install | |
npm run build | |
else | |
echo "O diretório frontend-app não foi encontrado." | |
exit 1 | |
fi | |
- name: Test Application | |
run: | | |
# Verificar o diretório de trabalho atual novamente | |
if [ -d "frontend-app" ]; then | |
cd frontend-app | |
npm test | |
else | |
echo "O diretório frontend-app não foi encontrado para os testes." | |
exit 1 | |
fi |