Skip to content

Commit

Permalink
Merge pull request #27 from frlp-utn-ingsoft/dev
Browse files Browse the repository at this point in the history
Versión 1.2.0
  • Loading branch information
RodrigoJacznik authored May 15, 2023
2 parents 0ed97c1 + 53b725a commit d2fa108
Show file tree
Hide file tree
Showing 13 changed files with 1,713 additions and 72 deletions.
21 changes: 21 additions & 0 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
name: CI

on: [push, pull_request]

jobs:
test:
runs-on: ubuntu-latest

strategy:
matrix:
node-version: [18.x]

steps:
- uses: actions/checkout@v3
- name: Build and Test
uses: actions/setup-node@v3
with:
node-version: '18.x'
- run: npm ci
- run: npm run build --if-present
- run: npm run test
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -102,3 +102,5 @@ dist

# TernJS port file
.tern-port

db.sqlite3
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,13 @@
# Changelog

## [1.2.0] 15-05-2023

### Added

- Sequelize para el manejo de base de datos
- Tests de integración sobre API y modelo
- Integración continua

## [1.1.0] 20-04-2023

### Added
Expand Down
10 changes: 8 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,14 +1,20 @@
# ReCalc
# ReCalc v1.2.0

Calculadora con funciones simples.

## Dependencias

- node > 16
- node > 18

## Comandos

```bash
# iniciar/limpiar la db
npm run seed

# iniciar calculadora
npm run start

# correr lost test
npm run test
```
Loading

0 comments on commit d2fa108

Please sign in to comment.