Skip to content

Commit bb87e5f

Browse files
committed
feat: upgrade & various fixes
Fixes #91, #90, #82
1 parent 28de3ed commit bb87e5f

File tree

14 files changed

+20539
-7481
lines changed

14 files changed

+20539
-7481
lines changed

.eslintrc.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
module.exports = {
22
root: true,
3-
extends: ['airbnb-base', 'prettier'],
3+
extends: 'eslint:recommended',
44
parserOptions: {
55
ecmaVersion: 2021,
66
sourceType: 'module',

.github/workflows/node.js.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -15,15 +15,15 @@ jobs:
1515

1616
strategy:
1717
matrix:
18-
node-version: [12.x, 14.x, 16.x]
18+
node-version: [14.x, 16.x]
1919
# See supported Node.js release schedule at https://nodejs.org/en/about/releases/
2020

2121
steps:
2222
- uses: actions/checkout@v2
2323
- name: Use Node.js ${{ matrix.node-version }}
24-
uses: actions/setup-node@v1
24+
uses: actions/setup-node@v2
2525
with:
2626
node-version: ${{ matrix.node-version }}
27-
- run: yarn --frozen-lockfile
28-
- run: yarn build
29-
- run: yarn lint
27+
- run: npm ci
28+
- run: npm run build
29+
- run: npm run lint

.nvmrc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
14
1+
16

0 commit comments

Comments
 (0)