Skip to content

Commit

Permalink
Merge pull request #9 from worksome/feature/node-20
Browse files Browse the repository at this point in the history
ci(deps): update actions to Node.js 20.x
  • Loading branch information
owenvoke authored Mar 21, 2024
2 parents 7cbae9e + a72ae1b commit b82843d
Show file tree
Hide file tree
Showing 5 changed files with 26,458 additions and 5,465 deletions.
24 changes: 24 additions & 0 deletions .eslintrc.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
module.exports = {
env: {
es2020: true,
node: true,
},
extends: [
'eslint:recommended',
'plugin:@typescript-eslint/recommended',
'prettier',
],
parser: '@typescript-eslint/parser',
parserOptions: {
ecmaVersion: 11,
sourceType: 'module',
},
plugins: ['@typescript-eslint', 'prettier'],
rules: {
indent: ['error', 2],
'linebreak-style': ['error', 'unix'],
quotes: ['error', 'single'],
semi: ['error', 'never'],
'prettier/prettier': 2,
},
}
24 changes: 0 additions & 24 deletions .eslintrc.json

This file was deleted.

6 changes: 3 additions & 3 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,12 +10,12 @@ jobs:

steps:
- name: Checkout
uses: actions/checkout@v3
uses: actions/checkout@v4

- name: Set up Node.js
uses: actions/setup-node@v3
uses: actions/setup-node@v4
with:
node-version: 16
node-version: 20

- name: Install Node.js dependencies
run: npm install
Expand Down
Loading

0 comments on commit b82843d

Please sign in to comment.