A tool for parsing traffic on the jetstream and applying a moderation workstream based on regexp based rules

Use Bun for type checking and testing

Use Bun to run the type check, tests, and coverage.

Skywatch 52f2ebbf 9df4049f

Changed files
+4 -4
.github
workflows
.husky
+3 -3
.github/workflows/ci.yml
··· 25 25 # run: npm run lint 26 26 27 27 - name: Type check 28 - run: npx tsc --noEmit 28 + run: bun run type-check 29 29 30 30 - name: Run tests 31 - run: npm run test:run 31 + run: bun run test:run 32 32 33 33 - name: Generate coverage report 34 - run: npm run test:coverage 34 + run: bun run test:coverage 35 35 36 36 - name: Upload coverage to Codecov 37 37 uses: codecov/codecov-action@v4
+1 -1
.husky/pre-push
··· 1 1 #!/usr/bin/env sh 2 2 . "$(dirname -- "$0")/_/husky.sh" 3 3 4 - npm run type-check 4 + bun run type-check