Skip to content

Commit c21952c

Browse files
Merge pull request #3 from starkbank/feature/travis-ci-integration
Add Travis CI integration
2 parents 774d3d5 + bd9ecb3 commit c21952c

File tree

4 files changed

+26
-3
lines changed

4 files changed

+26
-3
lines changed

.gitignore

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,3 @@
11
#Private and public keys
22
*.key
3-
*.pem
4-
privateKey.pem
5-
publicKey.pem
63
.idea

.travis.yml

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
language: node_js
2+
3+
matrix:
4+
include:
5+
- node_js: "10"
6+
- node_js: "11"
7+
- node_js: "12"
8+
- node_js: "13"
9+
10+
install:
11+
- npm install
12+
13+
script:
14+
- ./node_modules/mocha/bin/mocha test

test/privateKey.pem

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
-----BEGIN EC PARAMETERS-----
2+
BgUrgQQACg==
3+
-----END EC PARAMETERS-----
4+
-----BEGIN EC PRIVATE KEY-----
5+
MHQCAQEEIODvZuS34wFbt0X53+P5EnSj6tMjfVK01dD1dgDH02RzoAcGBSuBBAAK
6+
oUQDQgAE/nvHu/SQQaos9TUljQsUuKI15Zr5SabPrbwtbfT/408rkVVzq8vAisbB
7+
RmpeRREXj5aog/Mq8RrdYy75W9q/Ig==
8+
-----END EC PRIVATE KEY-----

test/publicKey.pem

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
-----BEGIN PUBLIC KEY-----
2+
MFYwEAYHKoZIzj0CAQYFK4EEAAoDQgAE/nvHu/SQQaos9TUljQsUuKI15Zr5SabP
3+
rbwtbfT/408rkVVzq8vAisbBRmpeRREXj5aog/Mq8RrdYy75W9q/Ig==
4+
-----END PUBLIC KEY-----

0 commit comments

Comments
 (0)