1
0
mirror of https://github.com/ianstormtaylor/slate.git synced 2025-02-24 09:13:24 +01:00

removes redundant travis config file (#4201)

This commit is contained in:
Julian Krispel-Samsel 2021-04-14 16:00:19 +01:00 committed by GitHub
parent 6a1376332b
commit 25a69949d7
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -1,31 +0,0 @@
language: node_js
node_js: [node]
before_install:
# Export the C++11 compiler.
- if [[ $TRAVIS_OS_NAME == "linux" ]]; then export CXX=g++-4.8; fi
cache: yarn
env:
# Do multiple runs for testing and linting.
matrix:
- TEST_TYPE=test
- TEST_TYPE=lint:eslint
- TEST_TYPE=lint:prettier
before_script:
# When linting, build the dependencies so they can be resolved.
- |
set -e
if [[ $TEST_TYPE == 'lint:eslint' ]]; then
yarn build
fi
set +e
script:
# Run testing or linting depending on the environment.
- |
set -e
yarn $TEST_TYPE
set +e