This repository has been archived by the owner on Feb 12, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1.2k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
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
1 parent
ce4ff3e
commit d0ae0e8
Showing
3 changed files
with
27 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |