Skip to content

Commit bd9ecb3

Browse files
Add Travis CI integration
1 parent 774d3d5 commit bd9ecb3

File tree

4 files changed

+26
-3
lines changed

4 files changed

+26
-3
lines changed

.gitignore

-3
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

+14
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

+8
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

+4
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)