Skip to content

Commit

Permalink
Merge pull request #150 from xnimorz/node-version
Browse files Browse the repository at this point in the history
Update nove version for github actions to 16.x
  • Loading branch information
xnimorz authored Nov 28, 2022
2 parents c432a59 + 6fc6145 commit e00bd7d
Show file tree
Hide file tree
Showing 3 changed files with 103 additions and 112 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,10 +14,10 @@ jobs:

steps:
- uses: actions/checkout@v1
- name: Use Node.js 12.x
- name: Use Node.js 16.x
uses: actions/setup-node@v1
with:
node-version: 12.x
node-version: 16.x
- name: install and tests
run: |
yarn install
Expand Down
10 changes: 5 additions & 5 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,7 @@
"prettier": "^1.17.1",
"react": "16.8.3",
"react-dom": "16.8.3",
"size-limit": "^4.6.2",
"size-limit": "^8.1.0",
"ts-jest": "^26.3.0",
"typescript": "^3.5.1"
},
Expand All @@ -91,7 +91,7 @@
},
"size-limit": [
{
"path": "dist/index.js",
"path": "dist/index.cjs",
"limit": "1 KB"
},
{
Expand All @@ -107,17 +107,17 @@
"limit": "1 KB"
},
{
"path": "dist/index.js",
"path": "dist/index.cjs",
"import": "{ useDebounce }",
"limit": "1 KB"
},
{
"path": "dist/index.js",
"path": "dist/index.cjs",
"import": "{ useDebouncedCallback }",
"limit": "1 KB"
},
{
"path": "dist/index.js",
"path": "dist/index.cjs",
"import": "{ useThrottledCallback }",
"limit": "1 KB"
}
Expand Down
Loading

0 comments on commit e00bd7d

Please sign in to comment.