Storage implementations for AT Protocol OAuth applications. Provides a simple key-value storage interface with implementations for in-memory and SQLite backends.
0
fork

Configure Feed

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

Add GitHub Actions workflow for JSR publishing

+37
+37
.github/workflows/publish.yml
··· 1 + name: Publish to JSR 2 + 3 + on: 4 + push: 5 + tags: 6 + - 'v*' 7 + 8 + jobs: 9 + publish: 10 + runs-on: ubuntu-latest 11 + permissions: 12 + contents: read 13 + id-token: write 14 + 15 + steps: 16 + - name: Checkout 17 + uses: actions/checkout@v4 18 + 19 + - name: Setup Deno 20 + uses: denoland/setup-deno@v2 21 + with: 22 + deno-version: v2.x 23 + 24 + - name: Verify formatting 25 + run: deno fmt --check 26 + 27 + - name: Run linter 28 + run: deno lint 29 + 30 + - name: Type check 31 + run: deno check mod.ts 32 + 33 + - name: Run tests 34 + run: deno test --allow-all 35 + 36 + - name: Publish to JSR 37 + run: deno publish