Skip to content

Commit

Permalink
devops - revise master workflow step names and dev deps upgrade
Browse files Browse the repository at this point in the history
  • Loading branch information
woozyking committed Aug 6, 2020
1 parent a1e6eef commit 6ba472d
Show file tree
Hide file tree
Showing 3 changed files with 588 additions and 407 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/master.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:
matrix:
node: ['12.x', '14.x']

name: With Node ${{ matrix.node }}
name: lint with Node ${{ matrix.node }}
steps:
- uses: actions/checkout@v2

Expand Down Expand Up @@ -43,7 +43,7 @@ jobs:
matrix:
node: ['12.x', '14.x']

name: With Node ${{ matrix.node }}
name: test with Node ${{ matrix.node }}
steps:
- uses: actions/checkout@v2

Expand Down Expand Up @@ -71,7 +71,7 @@ jobs:
matrix:
node: ['12.x', '14.x']

name: With Node ${{ matrix.node }}
name: build with Node ${{ matrix.node }}
steps:
- uses: actions/checkout@v2

Expand Down
2 changes: 1 addition & 1 deletion stories/index.stories.js
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,7 @@ storiesOf('cached', module)
.add('No key, no cache', () => {
const StateCounter = () => {
const init = () => Math.floor(Math.random() * 10)
// count here would be from cache if it exists as a non-null value
// count here would be not be cached and remove is a no-op function
const [count, setCount, remove] = cached()(useState)(init())
return (
<>
Expand Down
Loading

0 comments on commit 6ba472d

Please sign in to comment.