~rbdr/grafn

07b929505aaa8d5168ab7b03822ec002740af20f — Ruben Beltran del Rio 4 years ago e4c7baf main v1.0.1
Add Gitlab CI config
3 files changed, 23 insertions(+), 1 deletions(-)

A .gitlab-ci.yml
M CHANGELOG.md
M package.json
A .gitlab-ci.yml => .gitlab-ci.yml +18 -0
@@ 0,0 1,18 @@
image: node:14

stages:
  - lint
  - test

before_script:
    - npm install

lint:
  stage: lint
  script:
    - npm run lint

test:
  stage: test
  script:
    - npm test

M CHANGELOG.md => CHANGELOG.md +4 -0
@@ 4,6 4,10 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [1.0.1] - 2020-09-20
### Added
- Gitlab CI config

## [1.0.0] - 2020-09-20
### Added
- Functionality to execute graphs

M package.json => package.json +1 -1
@@ 1,6 1,6 @@
{
  "name": "grafn",
  "version": "1.0.0",
  "version": "1.0.1",
  "description": "Graph + Fn: Execute functions as a graph",
  "main": "lib/grafn",
  "scripts": {