feat: add promise handling to RequestState in makeClient #16
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: 📦 Publish NPM | |
| on: { push: { branches: [master] } } | |
| jobs: | |
| publish-npm: | |
| runs-on: ubuntu-latest | |
| permissions: | |
| contents: read | |
| id-token: write | |
| steps: | |
| - name: 🐧 Checkout | |
| uses: actions/checkout@v5 | |
| with: { fetch-depth: 0 } | |
| - name: 🟢 Update node | |
| uses: actions/setup-node@v6 | |
| with: { node-version: 24, registry-url: "https://registry.npmjs.org" } | |
| - name: 🦖 Set up Deno | |
| uses: denoland/setup-deno@v2 | |
| with: { deno-version: v2.x, cache: true } | |
| - name: 📦 Build npm packages | |
| run: deno run -A npm.ts |