Skip to content
Open
Show file tree
Hide file tree
Changes from all 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
30 changes: 30 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
name: CI
on:
- push

jobs:
ci:
runs-on: ubuntu-latest
strategy:
fail-fast: true
matrix:
node-version:
- '14'
- '16'
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