The weeb for the next gen discord boat - Wamellow wamellow.com
bot discord
3
fork

Configure Feed

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

feat: ci (#43)

authored by

Luna Seemann and committed by
GitHub
cf3c7fea 9ca909da

+22 -1
+21
.github/workflows/test.yml
··· 1 + name: Run tests 2 + 3 + on: 4 + push: 5 + branches: [main, master] 6 + pull_request: 7 + branches: [main, master] 8 + 9 + jobs: 10 + tests: 11 + runs-on: ubuntu-latest 12 + 13 + steps: 14 + - uses: actions/checkout@v6 15 + - uses: oven-sh/setup-bun@v2 16 + 17 + - name: Install packages 18 + run: bun install --frozen-lockfile 19 + 20 + - name: Run linters 21 + run: bunx eslint . --no-fix
+1 -1
utils/bitfields.ts
··· 1 1 export class Bitfield { 2 - constructor(private flags: number) { } 2 + constructor(private flags: number) {} 3 3 4 4 add(flag: number) { 5 5 this.flags |= flag;