Skip to content

Commit

Permalink
feat: upgrade & various fixes
Browse files Browse the repository at this point in the history
Fixes #91, #90, #82
  • Loading branch information
gregberge committed Feb 12, 2022
1 parent 28de3ed commit bb87e5f
Show file tree
Hide file tree
Showing 14 changed files with 20,539 additions and 7,481 deletions.
2 changes: 1 addition & 1 deletion .eslintrc.js
@@ -1,6 +1,6 @@
module.exports = {
root: true,
extends: ['airbnb-base', 'prettier'],
extends: 'eslint:recommended',
parserOptions: {
ecmaVersion: 2021,
sourceType: 'module',
Expand Down
10 changes: 5 additions & 5 deletions .github/workflows/node.js.yml
Expand Up @@ -15,15 +15,15 @@ jobs:

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

steps:
- uses: actions/checkout@v2
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v1
uses: actions/setup-node@v2
with:
node-version: ${{ matrix.node-version }}
- run: yarn --frozen-lockfile
- run: yarn build
- run: yarn lint
- run: npm ci
- run: npm run build
- run: npm run lint
2 changes: 1 addition & 1 deletion .nvmrc
@@ -1 +1 @@
14
16

0 comments on commit bb87e5f

Please sign in to comment.