Skip to content

Commit 3d958a9

Browse files
committed
Remove TravisCI, replaced by GitHub actions
1 parent 2cdc632 commit 3d958a9

4 files changed

Lines changed: 15 additions & 25 deletions

File tree

.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 & 15 deletions
This file was deleted.

CONTRIBUTING.md

Lines changed: 8 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -18,10 +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
2528
* (Local) Run `npm test`. Make sure [Karma Local Config](karma.conf.js) has the browsers you want
26-
* (Any browser, remotely) Run `make test-ci` to run tests on [Sauce Labs](https://saucelabs.com).
27-
Make sure the target browser is enabled in [Karma CI Config](karma.conf.ci.js)
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: 7 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,13 @@
11
stack-generator
22
===============
3-
[![Build Status](https://travis-ci.org/stacktracejs/stack-generator.svg?branch=master)](https://travis-ci.org/stacktracejs/stack-generator) [![Coverage Status](https://img.shields.io/coveralls/stacktracejs/stack-generator.svg)](https://coveralls.io/r/stacktracejs/stack-generator) [![GitHub license](https://img.shields.io/github/license/stacktracejs/stack-generator.svg)](https://opensource.org/licenses/MIT)
3+
[![Build Status](https://img.shields.io/github/workflow/status/stacktracejs/stack-generator/Continuous%20Integration/master?logo=github&style=flat-square)](https://github.com/stacktracejs/stack-generator/actions?query=workflow%3AContinuous+Integration+branch%3Amaster)
4+
[![Coverage Status](https://img.shields.io/coveralls/stacktracejs/stack-generator.svg)](https://coveralls.io/r/stacktracejs/stack-generator)
5+
[![GitHub license](https://img.shields.io/github/license/stacktracejs/stack-generator.svg)](https://opensource.org/licenses/MIT)
6+
[![dependencies](https://img.shields.io/badge/dependencies-1-green.svg?style=flat-square)](https://github.com/stacktracejs/stack-generator/releases)
7+
[![module format](https://img.shields.io/badge/module%20format-umd-lightgrey.svg?style=flat-square&colorB=ff69b4)](https://github.com/stacktracejs/stack-generator/releases)
8+
[![code of conduct](https://img.shields.io/badge/code%20of-conduct-lightgrey.svg?style=flat-square&colorB=ff69b4)](http://todogroup.org/opencodeofconduct/#stacktrace.js/me@eriwen.com)
49

5-
Generate artificial backtrace by walking arguments.callee.caller chain. **Works everywhere except strict-mode**.
10+
Generate artificial backtrace by walking arguments.callee.caller chain. **Works everywhere except [strict-mode](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Strict_mode)**.
611

712
## Usage
813
```
@@ -23,6 +28,3 @@ https://raw.githubusercontent.com/stacktracejs/stack-generator/master/dist/stack
2328

2429
## Contributing
2530
Want to be listed as a *Contributor*? Start with the [Contributing Guide](CONTRIBUTING.md)!
26-
27-
## License
28-
This project is licensed to the [Public Domain](http://unlicense.org)

0 commit comments

Comments
 (0)