[READ-ONLY] Mirror of https://github.com/bombshell-dev/tab. shell autocompletions for javascript CLIs
4

Configure Feed

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

update gh actions

AmirSa12 (Oct 28, 2024, 7:32 PM +0330) 380bf632 045de82c

+11 -5
+11 -5
.github/workflows/ci.yml
··· 16 16 runs-on: ${{ matrix.os }} 17 17 18 18 steps: 19 - - uses: actions/checkout@v2 19 + - name: Checkout 20 + uses: actions/checkout@v4 20 21 21 - - name: Set up Node.js 22 - uses: actions/setup-node@v2 22 + - name: Install pnpm 23 + uses: pnpm/action-setup@v4.0.0 24 + 25 + - name: Set node version to 20 26 + uses: actions/setup-node@v4 23 27 with: 24 - node-version: "16" 28 + node-version: 20 29 + registry-url: https://registry.npmjs.org/ 30 + cache: "pnpm" 25 31 26 - - name: Install dependencies 32 + - name: Install deps 27 33 run: pnpm install 28 34 29 35 - name: Run tests