Skip to content

Commit

Permalink
Circleci project setup (maugenst#24)
Browse files Browse the repository at this point in the history
* Add .circleci/config.yml

* Typescripted version of zip-a-folder
Bumped to 1.0.2

* moved from TravisCI to circleci

* Typescripted version of zip-a-folder
Bumped to 1.0.2

* moved from TravisCI to circleci

* Merge remote-tracking branch 'origin/circleci-project-setup' into circleci-project-setup

# Conflicts:
#	.circleci/config.yml

* Merge remote-tracking branch 'origin/circleci-project-setup' into circleci-project-setup

# Conflicts:
#	.circleci/config.yml

* Merge remote-tracking branch 'origin/circleci-project-setup' into circleci-project-setup

# Conflicts:
#	.circleci/config.yml

* Merge remote-tracking branch 'origin/circleci-project-setup' into circleci-project-setup

# Conflicts:
#	.circleci/config.yml

* conversion to circleCI
  • Loading branch information
maugenst authored Apr 6, 2021
1 parent 05ba1bb commit a43fa13
Show file tree
Hide file tree
Showing 3 changed files with 24 additions and 1 deletion.
20 changes: 20 additions & 0 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
version: 2.1
orbs:
node: circleci/[email protected]
coveralls: coveralls/[email protected]
jobs:
buildAndTest:
# Reuse Docker container specification given by the node Orb
executor: node/default
steps:
- checkout
- node/install-packages
- run: npm run build
- run: npm test
- coveralls/upload

workflows:
version: 2
build_and_test:
jobs:
- buildAndTest
3 changes: 3 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@
[![NPM](https://nodei.co/npm/zip-a-folder.png)](https://nodei.co/npm/zip-a-folder/)

[![CircleCI](https://circleci.com/gh/maugenst/zip-a-folder.svg?style=shield)](https://circleci.com/gh/maugenst/zip-a-folder)
[![Coverage Status](https://coveralls.io/repos/github/maugenst/zip-a-folder/badge.svg?branch=master)](https://coveralls.io/github/maugenst/zip-a-folder?branch=master)

# zip-a-folder
Easy to use zip (or tar) a complete folder plain into a zip file
including compression ratio handling.
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
"test": "test"
},
"scripts": {
"test": "jest --coverage && coveralls < ./coverage/lcov.info",
"test": "jest --coverage",
"build": "npm run clean && tsc && npm run lint",
"clean": "rimraf dist/",
"lint": "eslint . --ext .ts"
Expand Down

0 comments on commit a43fa13

Please sign in to comment.