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

Configure Feed

Select the types of activity you want to include in your feed.

Use Bun for type checking and testing

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

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