Skip to content

Commit

Permalink
fix: node-fetch DeprecationWarning
Browse files Browse the repository at this point in the history
  • Loading branch information
theoludwig committed Nov 15, 2023
1 parent 81fb091 commit 34289d7
Show file tree
Hide file tree
Showing 7 changed files with 1,837 additions and 955 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 34289d7

Please sign in to comment.