Skip to content
This repository has been archived by the owner on Feb 12, 2024. It is now read-only.

Commit

Permalink
fix: add travis.yml
Browse files Browse the repository at this point in the history
fix: add language node

fix: add tests

fix: add osx windows

fix: naming

fix: fix deps and add lock

fix: fix deps

fix: remove node 8

chore: update lock

feat: add matrix and full tests

feat: add gitattributes

feat: fix git attributes path

feat: test attributes 2

fix: trigger

fix: fix line ending

chore: remove allow failure

chore: remove lock

chore: ignore lock
  • Loading branch information
hugomrdias committed Nov 30, 2018
1 parent ce4ff3e commit d0ae0e8
Show file tree
Hide file tree
Showing 3 changed files with 27 additions and 1 deletion.
3 changes: 3 additions & 0 deletions .gitattributes
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
* text=auto
test/** text eol=lf
src/init-files/** text eol=lf
2 changes: 1 addition & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -40,5 +40,5 @@ test/fixtures/go-ipfs-repo/LOG
test/fixtures/go-ipfs-repo/LOG.old

# while testing npm5
package-lock.json
yarn.lock
package-lock.json
23 changes: 23 additions & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
language: node_js
cache: npm
stages:
- check
- test
- cov

node_js:
- 10

os:
- linux
- osx
- windows

script: npm run test:node -- --bail

jobs:
include:
- stage: check
node_js: 10
script:
- npm run lint

0 comments on commit d0ae0e8

Please sign in to comment.