summaryrefslogtreecommitdiffstats
path: root/packages/markdown/marked/.travis.yml
diff options
context:
space:
mode:
authorRomulus Tsai 蔡仲明 <urakagi@gmail.com>2020-05-08 09:35:11 +0800
committerRomulus Tsai 蔡仲明 <urakagi@gmail.com>2020-05-08 09:35:11 +0800
commitcfcc73724fcd394150d1b815d0a7a4c466e216b5 (patch)
treea9648255f14cd8b0e1ad8eee1f8d42337a0668bc /packages/markdown/marked/.travis.yml
parenta3658993128bdddd5d40f792c19281dc5eac51f5 (diff)
parent533bc045d06269dba2f42cdfe61817a1b3407974 (diff)
downloadwekan-cfcc73724fcd394150d1b815d0a7a4c466e216b5.tar.gz
wekan-cfcc73724fcd394150d1b815d0a7a4c466e216b5.tar.bz2
wekan-cfcc73724fcd394150d1b815d0a7a4c466e216b5.zip
Merge branch 'master' of https://github.com/wekan/wekan
Diffstat (limited to 'packages/markdown/marked/.travis.yml')
-rw-r--r--packages/markdown/marked/.travis.yml46
1 files changed, 0 insertions, 46 deletions
diff --git a/packages/markdown/marked/.travis.yml b/packages/markdown/marked/.travis.yml
deleted file mode 100644
index 8ff71da4..00000000
--- a/packages/markdown/marked/.travis.yml
+++ /dev/null
@@ -1,46 +0,0 @@
-language: node_js
-
-jobs:
- fast_finish: true
- allow_failures:
- - stage: security scan 🔐
-
- include:
- - stage: unit tests 👩🏽‍💻
- script: npm run test:unit
- node_js: lts/*
-
- - stage: spec tests 👩🏽‍💻
- script: npm run test:specs
- node_js: v4
- - node_js: lts/*
- - node_js: node
-
- - stage: lint ✨
- script: npm run test:lint
- node_js: lts/*
-
- - stage: minify 🗜️
- script: |
- npm run build
- if ! git diff --quiet; then
- git config --global user.email "travis@travis-ci.org"
- git config --global user.name "Travis-CI"
- git config credential.helper "store --file=.git/credentials"
- echo "https://${GITHUB_TOKEN}:@github.com" > .git/credentials
- git commit -am '🗜️ minify [skip ci]'
- git push origin HEAD:${TRAVIS_BRANCH}
- fi
- node_js: lts/*
- if: branch = master AND type = push
-
- - stage: security scan 🔐
- script: npm run test:redos
- node_js: lts/*
-
-cache:
- directories:
- - node_modules
-
-git:
- depth: 3