Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
26 changes: 26 additions & 0 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
version: 2.1
jobs:

build_and_test:
docker:
- image: circleci/node:16
steps:
- checkout
- run:
name: Install Dependencies
command: npm install
- run:
name: Run Main Tests
command: npm test
- run:
name: Report Code Coverage
command: |
curl -Os https://uploader.codecov.io/latest/linux/codecov
chmod +x codecov
./codecov

workflows:
version: 2
build_and_test:
jobs:
- build_and_test
4 changes: 3 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -6,4 +6,6 @@ coverage
run.db*
.idea
*.sqlite3
.runcache
.runcache
**.swp
**.swo
Loading