Skip to content

Commit

Permalink
chore: updated dependencies, drop node 14, add node 20 (#22)
Browse files Browse the repository at this point in the history
Signed-off-by: Matteo Collina <hello@matteocollina.com>
  • Loading branch information
mcollina authored Apr 27, 2023
1 parent 626361d commit 7ceaa98
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ jobs:
runs-on: ${{ matrix.os }}
strategy:
matrix:
node-version: [14.x, 16.x, 18.x]
node-version: [16.x, 18.x, 20,x]
os: [ubuntu-latest, windows-latest, macOS-latest]
steps:
- uses: actions/checkout@v3
Expand Down
7 changes: 4 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,8 @@
"lint:typescript": "standard --parser @typescript-eslint/parser --plugin @typescript-eslint/eslint-plugin test/types/*.ts",
"example": "node example/index.js",
"test": "npm run lint && npm run test:unit && npm run test:types",
"test:unit": "tap --jobs=1 --coverage-report=html test/*.js",
"test:unit": "tap --jobs=1 test/*.js",
"test:cov": "tap --jobs=1 --coverage-report=html test/*.js",
"test:types": "tsd",
"prepare": "husky install"
},
Expand All @@ -41,7 +42,7 @@
"@graphql-tools/utils": "^9.1.1",
"@typescript-eslint/eslint-plugin": "^5.43.0",
"@typescript-eslint/parser": "^5.43.0",
"fastify": "^4.9.2",
"fastify": "^4.17.0",
"graphql-tag": "^2.12.6",
"graphql-ws": "^5.11.2",
"husky": "^8.0.2",
Expand All @@ -62,6 +63,6 @@
"dependencies": {
"@fastify/error": "^3.0.0",
"graphql": "^16.6.0",
"mercurius": "^12.0.0"
"mercurius": "^13.0.0"
}
}

0 comments on commit 7ceaa98

Please sign in to comment.