From: Ruben Beltran del Rio Date: Sun, 20 Sep 2020 15:27:30 +0000 (+0200) Subject: Add Gitlab CI config X-Git-Url: https://git.r.bdr.sh/rbdr/grafn/commitdiff_plain?ds=sidebyside Add Gitlab CI config --- diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml new file mode 100644 index 0000000..cc95c38 --- /dev/null +++ b/.gitlab-ci.yml @@ -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 diff --git a/CHANGELOG.md b/CHANGELOG.md index a2de74a..d6ccfc9 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -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 diff --git a/package.json b/package.json index bf55d24..03a4d4e 100644 --- a/package.json +++ b/package.json @@ -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": {