Skip to content
This repository has been archived by the owner on Apr 26, 2024. It is now read-only.

chore: increment dependencies #100

Merged
merged 4 commits into from
May 22, 2021
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .eslintrc
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@
"airbnb",
"plugin:react/recommended",
"plugin:@typescript-eslint/recommended",
"prettier/@typescript-eslint",
"prettier",
"plugin:prettier/recommended"
],
"rules": {
Expand Down Expand Up @@ -98,4 +98,4 @@
}
}
]
}
}
2 changes: 1 addition & 1 deletion .github/actions/pr-lint/commitlint.config.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
module.exports = {
extends: ['@commitlint/config-conventional'],
rules: {
'header-max-length': [2, 'always', 70],
'header-max-length': [2, 'always', 90],
},
};
6 changes: 3 additions & 3 deletions .github/workflows/git.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,14 +14,14 @@ jobs:
steps:
- uses: actions/checkout@v1

- name: setup node 12.x
- name: setup node 14.x
uses: actions/setup-node@v1
with:
node-version: '12.x'
node-version: '14.x'

- name: install deps
run: |
npm ci
npm install node-notifier && npm ci
env:
CI: true

Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,14 +10,14 @@ jobs:
steps:
- uses: actions/checkout@v1

- name: setup node 12.x
- name: setup node 14.x
uses: actions/setup-node@v1
with:
node-version: '12.x'
node-version: '14.x'

- name: test
run: |
npm ci
npm install node-notifier && npm ci
npm run build --if-present
npm test
env:
Expand Down
Loading