Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[MAJOR] Drop react-native support, update deps, swap to GH Actions #21

Open
wants to merge 7 commits into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from 4 commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
31 changes: 31 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
name: CI
on:
- push

jobs:
ci:
runs-on: ubuntu-latest
strategy:
fail-fast: true
matrix:
node-version:
- '10'
dcousineau-godaddy marked this conversation as resolved.
Show resolved Hide resolved
- '12'
- '14'
decompil3d marked this conversation as resolved.
Show resolved Hide resolved
steps:
- uses: actions/checkout@v2
- name: Setup node
uses: actions/setup-node@v2
with:
node-version: ${{ matrix.node-version }}
- name: Install deps
run: |
npm install
- name: Run tests
run: |
npm run test
- name: Report coverage
with:
github-token: ${{ secrets.GITHUB_TOKEN }}
if: ${{ success() && matrix.node-version == '14' }}
uses: coverallsapp/github-action@master
9 changes: 0 additions & 9 deletions .travis.yml

This file was deleted.

4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# CHANGELOG

- **BREAKING:** Drop `react-native` support
- Update dependencies
- Swap to GitHub Actions for CI

### 4.0.0

- Upgrade to `babel@7`.
Expand Down
7 changes: 0 additions & 7 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -35,13 +35,6 @@ Please do note that:
- The module is written in ES6, so make sure that you environment supports this
or use a transpiler like [Babel](http://babeljs.io/) to compile the code.

## Support

Breakdancer is tested and works on both `web` and `react-native` platforms.
Note that we don't specify `react-native` as a peer dependency in order to avoid
dependency issues on pure `web` projects, so make sure you have `react-native`
as a dependency.

## API

The `Breakdancer` constructor is exported as default interface of this module
Expand Down
47 changes: 0 additions & 47 deletions index.native.js

This file was deleted.

Loading