Skip to content

Commit

Permalink
Merge pull request #404 from theoludwig/fix/deprecation-warning-with-…
Browse files Browse the repository at this point in the history
…fetch

fix: node-fetch DeprecationWarning
  • Loading branch information
mstruebing authored Nov 16, 2023
2 parents 81fb091 + 91df45a commit e4f5135
Show file tree
Hide file tree
Showing 7 changed files with 1,838 additions and 956 deletions.
2 changes: 1 addition & 1 deletion .eslintrc
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"parser": "@typescript-eslint/parser",
"plugins": ["@typescript-eslint"],
"plugins": ["@typescript-eslint", "prettier"],
"extends": ["plugin:@typescript-eslint/recommended", "prettier"]
}
10 changes: 7 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,12 +4,16 @@ on: [push, pull_request]

jobs:
build_and_lint:
runs-on: ubuntu-20.04
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
- uses: actions/checkout@v4

- uses: actions/setup-node@v4
with:
node-version: 18
cache: 'npm'

- run: npm ci
- run: npm start
- run: npm run lint
- run: npm run test
Loading

0 comments on commit e4f5135

Please sign in to comment.