Skip to content

Commit

Permalink
feat: support nodejs 20 & update packages
Browse files Browse the repository at this point in the history
  • Loading branch information
rimesime committed Apr 3, 2024
1 parent 4791be3 commit 99f05f3
Show file tree
Hide file tree
Showing 4 changed files with 3,831 additions and 3,364 deletions.
2 changes: 1 addition & 1 deletion .eslintrc.js
Expand Up @@ -29,7 +29,6 @@ module.exports = {
'jsdoc/check-alignment': 'error',
'jsdoc/check-indentation': 'error',
'jsdoc/empty-tags': 'error',
'jsdoc/newline-after-description': 'error',
'jsdoc/require-description-complete-sentence': [
'error',
{ abbreviations: ['etc', 'e.g.', 'i.e.'] },
Expand All @@ -50,6 +49,7 @@ module.exports = {
'jsdoc/require-returns-type': 'error',
'jsdoc/require-returns': 'error',
'jsdoc/valid-types': 'error',
'jsdoc/tag-lines': ['error', 'any', { startLines: 1 }],
'jest/consistent-test-it': 'error',
'jest/expect-expect': 'error',
'jest/prefer-lowercase-title': 'error',
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/test_and_publish.yml
Expand Up @@ -12,7 +12,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [16.x, 18.x, 19.x]
node-version: [16.x, 18.x, 20.x]
steps:
- uses: actions/checkout@v4
- name: Use Node.js ${{ matrix.node-version }}
Expand Down Expand Up @@ -63,10 +63,10 @@ jobs:
needs: [test, analyze]
steps:
- uses: actions/checkout@v4
- name: Use Node.js 18.x
- name: Use Node.js 20.x
uses: actions/setup-node@v4
with:
node-version: 18.x
node-version: 20.x
cache: 'npm'
- run: npm ci
- run: npm run semantic-release
Expand Down

0 comments on commit 99f05f3

Please sign in to comment.