mirror: A tiny/fast dataloader implementation
0

Configure Feed

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

chore: ci bump node versions

Marais Rossouw (May 23, 2023, 9:36 AM +1000) 8f87a61f 0c77c344

+6 -6
+6 -6
.github/workflows/ci.yml
··· 11 11 runs-on: ubuntu-latest 12 12 strategy: 13 13 matrix: 14 - node: [16, 18] 14 + node: [16, 18, 20] 15 15 steps: 16 16 - uses: actions/checkout@main 17 17 18 18 - name: (env) setup pnpm 19 - uses: pnpm/action-setup@v2.0.1 19 + uses: pnpm/action-setup@v2.2.4 20 20 with: 21 - version: 8.2.0 21 + version: 8.5.1 22 22 23 23 - name: (env) setup node v${{ matrix.node }} 24 24 uses: actions/setup-node@main ··· 31 31 run: pnpm install 32 32 33 33 - name: Compiles 34 - run: pnpm build 34 + run: pnpm run build 35 35 36 36 - name: Test 37 - run: pnpm test 37 + run: pnpm run test 38 38 39 39 - name: Check Types 40 - run: pnpm typecheck 40 + run: pnpm run typecheck