From 1f6eaa11bd4bcc3b645810c9b23d95924d3b64e0 Mon Sep 17 00:00:00 2001 From: zapolnoch Date: Sun, 31 May 2020 23:49:28 +0300 Subject: [PATCH] ci: windows e2e --- .prettierrc.json | 2 +- .travis.yml | 10 ++++++---- 2 files changed, 7 insertions(+), 5 deletions(-) diff --git a/.prettierrc.json b/.prettierrc.json index ded4e0f..aeff342 100644 --- a/.prettierrc.json +++ b/.prettierrc.json @@ -3,5 +3,5 @@ "semi": false, "singleQuote": false, "trailingComma": "all", - "endOfLine": "lf" + "endOfLine": "auto" } diff --git a/.travis.yml b/.travis.yml index 721bfe5..3e868ef 100644 --- a/.travis.yml +++ b/.travis.yml @@ -3,6 +3,7 @@ language: node_js os: - linux - osx + - windows node_js: - 10 @@ -10,7 +11,8 @@ node_js: - 14 before_install: - - if [ "$TRAVIS_OS_NAME" = "linux" ]; then sudo apt-get update ; fi - - if [ "$TRAVIS_OS_NAME" = "linux" ]; then sudo apt-get install tesseract-ocr ; fi - - if [ "$TRAVIS_OS_NAME" = "osx" ]; then brew update ; fi - - if [ "$TRAVIS_OS_NAME" = "osx" ]; then brew install tesseract ; fi + - if [ "$TRAVIS_OS_NAME" = "linux" ]; then sudo apt-get update ; fi + - if [ "$TRAVIS_OS_NAME" = "linux" ]; then sudo apt-get install tesseract-ocr ; fi + - if [ "$TRAVIS_OS_NAME" = "osx" ]; then brew update ; fi + - if [ "$TRAVIS_OS_NAME" = "osx" ]; then brew install tesseract ; fi + - if [ "$TRAVIS_OS_NAME" = "windows" ]; then choco install tesseract --pre ; fi