Mirror of Steamdown (Markdown -> Steam Markup converter)
0

Configure Feed

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

Update development tools (#392)

authored by

Spenser Black and committed by
GitHub
(Jul 16, 2026, 8:52 AM EDT) 25f1cc58 39159d5b

+12 -16
+7 -14
.github/workflows/ci.yml
··· 12 12 strategy: 13 13 matrix: 14 14 node-version: 15 - - "20.x" 16 - - "22.x" 15 + - "22" 16 + - "24" 17 17 18 18 steps: 19 19 - uses: actions/checkout@v7 20 - - uses: pnpm/action-setup@v6 21 - - name: Use Node.js ${{ matrix.node-version }} 22 - uses: actions/setup-node@v7 20 + - uses: pnpm/setup@v1 23 21 with: 24 - node-version: ${{ matrix.node-version }} 25 - cache: pnpm 26 - - run: pnpm install 22 + runtime: "node@${{ matrix.node-version }}" 23 + cache: true 27 24 - name: Build 28 25 run: pnpm run -w build 29 26 - name: Test ··· 38 35 39 36 steps: 40 37 - uses: actions/checkout@v7 41 - - uses: pnpm/action-setup@v6 42 - - name: Use Node.js 43 - uses: actions/setup-node@v7 38 + - uses: pnpm/setup@v1 44 39 with: 45 - node-version-file: .node-version 46 - cache: pnpm 47 - - run: pnpm install 40 + cache: true 48 41 - name: Check formatting 49 42 run: pnpm run -w format-check 50 43 - name: Lint
+1 -1
.node-version
··· 1 - 20 1 + 22
+1 -1
package.json
··· 25 25 "typescript": "^6.0.3", 26 26 "typescript-eslint": "^8.61.0" 27 27 }, 28 - "packageManager": "pnpm@10.7.1" 28 + "packageManager": "pnpm@11.13.1" 29 29 }
+3
pnpm-workspace.yaml
··· 1 1 packages: 2 2 - packages/* 3 + allowBuilds: 4 + esbuild: true 5 + unrs-resolver: true 3 6 link-workspace-packages: true 4 7 onlyBuiltDependencies: 5 8 - esbuild