Skip to content

Commit

Permalink
Add CI job and add changelog
Browse files Browse the repository at this point in the history
  • Loading branch information
ArnaudBarre committed Aug 20, 2024
1 parent 70a8c1b commit d5b76ec
Show file tree
Hide file tree
Showing 4 changed files with 21 additions and 4 deletions.
13 changes: 13 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
name: CI
on:
pull_request:
branches:
- main
jobs:
ci:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: oven-sh/setup-bun@v2
- run: bun install
- run: bun ci
4 changes: 2 additions & 2 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,8 @@ jobs:
runs-on: ubuntu-latest
if: ${{ contains(github.event.head_commit.message, '[publish]') }}
steps:
- uses: actions/checkout@v3
- uses: oven-sh/setup-bun@v1
- uses: actions/checkout@v4
- uses: oven-sh/setup-bun@v2
- run: bun install
- run: bun ci
- uses: ArnaudBarre/npm-publish@v1
Expand Down
6 changes: 5 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,8 +1,12 @@
# Changelog

## 0.4.10

- Support `function Foo() {}; export default React.memo(Foo)` (#46) (thanks @SukkaW!)

## 0.4.9

- Support `function Foo() {}; export default memo(Foo)` (fixes #44)
- Support `function Foo() {}; export default memo(Foo)` (fixes #44) (thanks @SukkaW!)

## 0.4.8

Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "eslint-plugin-react-refresh",
"version": "0.4.9",
"version": "0.4.10",
"type": "module",
"license": "MIT",
"scripts": {
Expand Down

0 comments on commit d5b76ec

Please sign in to comment.