File tree Expand file tree Collapse file tree 5 files changed +22
-34
lines changed
Expand file tree Collapse file tree 5 files changed +22
-34
lines changed Original file line number Diff line number Diff line change 1+ name : CI
2+ on : [push]
3+ jobs :
4+ build :
5+ runs-on : ubuntu-18.04
6+ steps :
7+ - uses : actions/checkout@v2
8+ - name : Use Node.js
9+ uses : actions/setup-node@v1
10+ with :
11+ node-version : ' 12.x'
12+ - run : yarn install
13+ - name : Run headless test
14+ uses : GabrielBB/xvfb-action@v1
15+ env :
16+ SAUCE_USERNAME : ${{ secrets.SAUCE_USERNAME }}
17+ SAUCE_ACCESS_KEY : ${{ secrets.SAUCE_ACCESS_KEY }}
18+ with :
19+ run : yarn test:ci
Load Diff This file was deleted.
Original file line number Diff line number Diff line change 11### The MIT License (MIT)
22
3- Copyright (c) 2014, 2015 Garth Poitras and Bustle Labs
3+ Copyright (c) 2014, 2015 Garth Poitras and Bustle Digital Group
44
55Permission is hereby granted, free of charge, to any person obtaining a copy
66of this software and associated documentation files (the "Software"), to deal
Original file line number Diff line number Diff line change 11# Mobiledoc Kit
22
3- [ ![ Travis CI Build Status] ( https://travis-ci.org /bustle/mobiledoc-kit.svg?branch=master )] ( https://travis-ci.org /bustle/mobiledoc-kit )
3+ [ ![ CI Build Status] ( https://github.com /bustle/mobiledoc-kit/workflows/CI/badge .svg )] ( https://github.com /bustle/mobiledoc-kit/actions?query=workflow%3ACI )
44
55[ ![ Sauce Test Status] ( https://saucelabs.com/browser-matrix/mobiledoc-kit.svg )] ( https://saucelabs.com/u/mobiledoc-kit )
66
7- [ ![ Dependency Status] ( https://david-dm.org/bustle/mobiledoc-kit/master.svg )] ( https://david-dm.org/bustle/mobiledoc-kit/master )
8- [ ![ devDependency Status] ( https://david-dm.org/bustle/mobiledoc-kit/master/dev-status.svg )] ( https://david-dm.org/bustle/mobiledoc-kit/master#info=devDependencies )
9-
107![ Mobiledoc Logo] ( https://bustle.github.io/mobiledoc-kit/demo/mobiledoc-logo-color-small.png )
118
129Mobiledoc Kit is a framework-agnostic library for building WYSIWYG editors
@@ -21,7 +18,6 @@ This repository hosts the core Mobiledoc Kit library. If you want to use Mobiled
2118| Plain JavaScript | [ mobiledoc-kit] ( https://github.com/bustle/mobiledoc-kit ) (this repo) |
2219| Ember | [ ember-mobiledoc-editor] ( https://github.com/bustle/ember-mobiledoc-editor ) |
2320| React | [ react-mobiledoc-editor] ( https://github.com/upworthy/react-mobiledoc-editor ) |
24- | Vue | [ vue-mobiledoc-editor] ( https://github.com/alidcastano/vue-mobiledoc-editor ) |
2521
2622If you only want to use the Mobiledoc-Kit runtime, for * rendering mobiledoc posts only* (not editing or creating them), you can use:
2723
@@ -465,7 +461,7 @@ Or run headless tests via testem:
465461
466462 * ` yarn test `
467463
468- Tests in CI are run at Travis via Saucelabs (see the ` test:ci ` yarn script).
464+ Tests in CI are run at Github Actions via Saucelabs (see the ` test:ci ` yarn script).
469465
470466Run linter
471467
Original file line number Diff line number Diff line change @@ -14,10 +14,6 @@ var opts = {
1414 connectVersion : '4.6.2'
1515} ;
1616
17- if ( process . env . TRAVIS_JOB_NUMBER ) {
18- opts . tunnelIdentifier = process . env . TRAVIS_JOB_NUMBER ;
19- }
20-
2117saucie . connect ( opts ) . then ( function ( ) {
2218 process . exit ( ) ;
2319} ) ;
You can’t perform that action at this time.
0 commit comments