Mirror: A Node.js fetch shim using built-in Request, Response, and Headers (but without native fetch)
0
fork

Configure Feed

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

chore: Update release workflow

+6 -2
+6 -2
.github/workflows/release.yml
··· 7 7 jobs: 8 8 release: 9 9 name: Release 10 - runs-on: ubuntu-20.04 10 + runs-on: ubuntu-latest 11 11 timeout-minutes: 20 12 12 permissions: 13 13 contents: write ··· 32 32 - name: Setup Node 33 33 uses: actions/setup-node@v4 34 34 with: 35 - node-version: 22 35 + node-version: 20 36 + registry-url: 'https://registry.npmjs.org' 36 37 cache: 'pnpm' 37 38 38 39 - name: Install Dependencies 39 40 run: pnpm install --frozen-lockfile --prefer-offline 41 + 42 + - name: Update npm 43 + run: npm install -g npm@11.6 40 44 41 45 - name: PR or Publish 42 46 id: changesets