We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent efd2902 commit 372d7b4Copy full SHA for 372d7b4
.github/workflows/release.yml
@@ -26,6 +26,9 @@ jobs:
26
- name: Install dependencies
27
run: npm ci
28
29
+ - name: Run linter
30
+ run: npm run lint
31
+
32
- name: Run tests
33
run: npm test
34
package.json
@@ -40,6 +40,8 @@
40
}
41
},
42
"scripts": {
43
+ "lint": "eslint --flag unstable_native_nodejs_ts_config",
44
+ "lint:fix": "eslint --fix --flag unstable_native_nodejs_ts_config",
45
"test": "vitest run --coverage",
46
"test:watch": "vitest --coverage",
47
"dev": "tsup --watch",
0 commit comments