kaneo (minimalist kanban) fork to experiment adding a tangled integration github.com/usekaneo/kaneo
0
fork

Configure Feed

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

feat: :construction_worker: adding workflow to lint project

Andrej 382d6c5e 5bb75f26

+35
+35
.github/workflows/ci.yml
··· 1 + name: CI 2 + 3 + on: 4 + push: 5 + branches: ["main"] 6 + pull_request: 7 + types: [opened, synchronize] 8 + 9 + jobs: 10 + build: 11 + name: Build and Test 12 + timeout-minutes: 15 13 + runs-on: ubuntu-latest 14 + 15 + steps: 16 + - name: Check out code 17 + uses: actions/checkout@v4 18 + with: 19 + fetch-depth: 2 20 + 21 + - uses: pnpm/action-setup@v3 22 + with: 23 + version: 8 24 + 25 + - name: Setup Node.js environment 26 + uses: actions/setup-node@v4 27 + with: 28 + node-version: 20 29 + cache: 'pnpm' 30 + 31 + - name: Install dependencies 32 + run: pnpm install 33 + 34 + - name: Build 35 + run: pnpm format-and-lint