summaryrefslogtreecommitdiff
path: root/.travis.yml
diff options
context:
space:
mode:
authorDavid Mehren2020-11-11 10:03:08 +0100
committerDavid Mehren2020-11-11 20:44:18 +0100
commit4ba4bad7de39dcc9909de2b9940d54f4c08fc7ce (patch)
treea54bcaaa9e1f1ff1ae0a2daa97dc1fddec091e13 /.travis.yml
parente28bc8eab4f5b2ed7a59b0297d7c47e5b37afa40 (diff)
Migrate to GitHub Actions
GH Actions now also do a production build with all supported Node versions to catch any Webpack errors Signed-off-by: David Mehren <git@herrmehren.de>
Diffstat (limited to '.travis.yml')
-rw-r--r--.travis.yml41
1 files changed, 0 insertions, 41 deletions
diff --git a/.travis.yml b/.travis.yml
deleted file mode 100644
index 5ab743d1..00000000
--- a/.travis.yml
+++ /dev/null
@@ -1,41 +0,0 @@
-language: node_js
-dist: xenial
-cache: yarn
-
-jobs:
- include:
- - stage: Static Tests
- name: eslint
- node_js:
- - 10
- script:
- - yarn run eslint
- - name: markdownlint
- node_js:
- - 10
- script:
- - yarn run markdownlint
- - name: ShellCheck
- script:
- - shellcheck bin/heroku bin/setup
- language: generic
- - name: json-lint
- node_js:
- - 10
- addons:
- apt:
- packages:
- - jq
- script:
- - yarn run jsonlint
- - stage: Dynamic Tests
- name: Node.js 10
- node_js:
- - 10
- script:
- - yarn run mocha-suite
- - name: Node.js 12
- node_js:
- - 12
- script:
- - yarn run mocha-suite