We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7e31a87 commit f751f9aCopy full SHA for f751f9a
.github/dependabot.yml
@@ -0,0 +1,11 @@
1
+version: 2
2
+updates:
3
+ - package-ecosystem: npm
4
+ directory: /
5
+ schedule:
6
+ interval: weekly
7
+ groups:
8
+ production-dependencies:
9
+ dependency-type: "production"
10
+ development-dependencies:
11
+ dependency-type: "development"
.github/workflows/ci.yaml
@@ -0,0 +1,9 @@
+on:
+ push:
+ branches:
+ - main
+ pull_request:
+
+jobs:
+ test:
+ uses: pkgjs/action/.github/workflows/node-test.yaml@main
package.json
@@ -22,6 +22,9 @@
22
"bin": {
23
"create-package": "bin/create-package"
24
},
25
+ "engines": {
26
+ "node": "^18 || ^20 || ^21"
27
+ },
28
"scripts": {
29
"test": "standard && mocha --timeout=60000",
30
"test:debug": "mocha --inspect --inspect-brk --timeout=0",
0 commit comments