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

Refactor CI to use Bun instead of Node.js and npm

Skywatch c73dc60a 535716c1

+3 -6
+3 -6
.github/workflows/ci.yml
··· 15 15 - name: Checkout code 16 16 uses: actions/checkout@v4 17 17 18 - - name: Setup Node.js 19 - uses: actions/setup-node@v4 20 - with: 21 - node-version: "20" 22 - cache: "npm" 18 + - name: Setup Bun 19 + uses: oven-sh/setup-bun@v1 23 20 24 21 - name: Install dependencies 25 - run: npm ci 22 + run: bun install 26 23 27 24 - name: Run linter 28 25 run: npm run lint