Skip to content

Commit 0db8edb

Browse files
authored
Merge pull request #18 from YagoBorba/feature/automated-release-with-tests
feat(core): ✨ implements and tests release automation
2 parents e7dee5f + 51387b8 commit 0db8edb

15 files changed

Lines changed: 1710 additions & 48 deletions

File tree

.github/workflows/ci.yml

Lines changed: 30 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,30 @@
1+
name: Continuous Integration
2+
3+
on:
4+
push:
5+
branches: [ main, develop ]
6+
pull_request:
7+
branches: [ main, develop ]
8+
9+
jobs:
10+
build-and-test:
11+
runs-on: ubuntu-latest
12+
13+
steps:
14+
- name: 1. Checkout do Repositório
15+
uses: actions/checkout@v4
16+
17+
- name: 2. Configurar o Node.js
18+
uses: actions/setup-node@v4
19+
with:
20+
node-version: 20
21+
cache: 'npm'
22+
23+
- name: 3. Instalar Dependências
24+
run: npm install
25+
26+
- name: 4. Compilar todos os pacotes
27+
run: npm run build
28+
29+
- name: 5. Rodar os Testes de todos os pacotes
30+
run: npm test -- --run

0 commit comments

Comments
 (0)