Skip to content

Commit

Permalink
Test on ARM.
Browse files Browse the repository at this point in the history
  • Loading branch information
igoramadas committed Nov 14, 2020
1 parent 568d21f commit c970f80
Show file tree
Hide file tree
Showing 3 changed files with 27 additions and 15 deletions.
11 changes: 7 additions & 4 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -1,8 +1,11 @@
sudo: false
language: node_js
node_js:
- "15"
- "14"
- "12"
- "15"
- "14"
- "12"
arch:
- "amd64"
- "arm64"
after_success:
- "cat ./coverage/lcov.info | ./node_modules/.bin/coveralls"
- "cat ./coverage/lcov.info | ./node_modules/.bin/coveralls"
20 changes: 10 additions & 10 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

11 changes: 10 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@
"setmeup": "^1.6.2"
},
"devDependencies": {
"@types/node": "^14.14.6",
"@types/node": "^14.14.7",
"chai": "^4.2.0",
"coveralls": "^3.1.0",
"get-port": "^5.1.1",
Expand All @@ -45,6 +45,15 @@
"typedoc": "^0.19.2",
"typescript": "^4.0.5"
},
"prettier": {
"trailingComma": "none",
"tabWidth": 4,
"semi": false,
"singleQuote": false,
"arrowParens": "always",
"bracketSpacing": false,
"printWidth": 250
},
"nyc": {
"reporter": "lcov",
"temp-dir": "./coverage"
Expand Down

0 comments on commit c970f80

Please sign in to comment.