Skip to content

Commit d2802ec

Browse files
authored
Merge pull request #43 from stacktracejs/ew/remove-travis-ci
Replace all Travis CI infra with GitHub actions and workflows
2 parents 527d06b + 0ca9af4 commit d2802ec

File tree

4 files changed

+11
-25
lines changed

4 files changed

+11
-25
lines changed

.npmignore

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,4 +6,3 @@ spec/
66
.coveralls.yml
77
.editorconfig
88
.idea
9-
.travis.yml

.travis.yml

Lines changed: 0 additions & 17 deletions
This file was deleted.

CONTRIBUTING.md

Lines changed: 9 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -18,11 +18,14 @@ Want to be listed as a *Contributor*? Make a pull request with:
1818
* Please keep code style consistent with surrounding code.
1919

2020
## Dev Setup
21-
* Make sure you have [NodeJS v0.10](http://nodejs.org/) installed
22-
* Run `npm install` from the project directory
21+
* Make sure you have [NodeJS v16.x](https://nodejs.org/) installed
22+
* Run `npm ci` from the project directory
23+
24+
## Linting
25+
* Run `npm run lint` to run ESLint
2326

2427
## Testing
25-
* (Local) Run `gulp test`. Make sure [Karma Local Config](karma.conf.js) has the browsers you want.
26-
* (Any browser, remotely) If you have a [Sauce Labs](https://saucelabs.com) account, you can run `gulp test-ci`.
27-
Make sure the target browser is enabled in [Karma CI Config](karma.conf.ci.js).
28-
Otherwise, Travis will run all browsers if you submit a Pull Request.
28+
* (Local) Run `npm test`. Make sure [Karma Local Config](karma.conf.js) has the browsers you want
29+
* (Any browser, remotely) If you have a [Sauce Labs](https://saucelabs.com) account, you can run `npm run test-ci`
30+
Make sure the target browser is enabled in [Karma CI Config](karma.conf.ci.js)
31+
Otherwise, GitHub Actions will run all browsers if you submit a Pull Request.

README.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,8 @@
11
stackframe
22
==========
33
## JS Object representation of a stack frame
4-
[![Build Status](https://img.shields.io/travis/stacktracejs/stackframe/master.svg?style=flat-square)](https://travis-ci.org/stacktracejs/stackframe)
4+
5+
![Build Status](https://img.shields.io/github/checks-status/stacktracejs/stackframe/master?style=flat-square)
56
[![Coverage Status](https://img.shields.io/coveralls/stacktracejs/stackframe.svg?style=flat-square)](https://coveralls.io/r/stacktracejs/stackframe?branch=master)
67
[![GitHub license](https://img.shields.io/github/license/stacktracejs/stackframe.svg?style=flat-square)](https://opensource.org/licenses/MIT)
78
[![dependencies](https://img.shields.io/badge/dependencies-0-green.svg?style=flat-square)](https://github.com/stacktracejs/stackframe/releases)

0 commit comments

Comments
 (0)