Skip to content

Commit

Permalink
🐛 useTimeout cleanup issue
Browse files Browse the repository at this point in the history
  • Loading branch information
Antonio Russo committed Aug 12, 2020
1 parent 4806320 commit 317eb5c
Show file tree
Hide file tree
Showing 7 changed files with 799 additions and 3,912 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/branch-tests.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: branch-tests
name: Tests

on:
push:
Expand All @@ -9,7 +9,7 @@ on:
- master

jobs:
branch-test:
test:
if: "!contains(github.event.head_commit.message, 'skip ci')"
runs-on: ${{ matrix.os }}

Expand Down
13 changes: 12 additions & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -44,8 +44,19 @@ jobs:
flags: unittests
path_to_write_report: ./coverage/codecov_report.gz


- name: Publish
run: npm publish
env:
NODE_AUTH_TOKEN: ${{secrets.NPM_TOKEN}}

- name: Create Github Release
uses: actions/create-release@v1
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
tag_name: ${{ github.ref }}
release_name: Release ${{ github.ref }}
body: |
Release automatically created by Github actions
draft: false
prerelease: false
11 changes: 11 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -549,3 +549,14 @@ online

- useInterval clear function is now correctly used as useEffect cleanup
- Rollup configuration `preserveModules` bug

## [0.27.3] - 2020-08-12

### Fixed

- useTimeout clear function is now correctly used as useEffect cleanup
- CI minor issues

### Added

- Automatic github releases
Loading

0 comments on commit 317eb5c

Please sign in to comment.