Use GitHub Actions only

This retires Travis, and starts upload screenshot diffs when integration
tests fail.
This commit is contained in:
Jordan Eldredge 2020-02-03 08:23:33 -08:00
parent 6dce525272
commit a1df4bfc73
8 changed files with 51 additions and 23 deletions

View file

@ -4,7 +4,7 @@ const postcss = require("postcss");
const plugin = require("./postcss-optimize-data-uri-pngs");
const css = fs.readFileSync("./css/base-skin.css", "utf8");
// This seems to timeout a lot on Travis
// This seems to timeout a lot in CI
it.skip("does something", async () => {
const result = await postcss([plugin({})]).process(css);
expect(result.css.length).toBeLessThan(css.length);