···2222 - name: Build
2323 run: npm run build
24242525+ - name: Lint
2626+ run: npm run lint
2727+2528 - name: Run Tests
2629 run: npm run test || npm run test
+6
eslint.config.js
···11+// @ts-check
22+33+import eslint from "@eslint/js";
44+import tseslint from "typescript-eslint";
55+66+export default tseslint.config(eslint.configs.recommended, ...tseslint.configs.strict);