[READ-ONLY] Mirror of https://github.com/danielroe/desktop. desktop.roe.dev
0

Configure Feed

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

ci: add lint test

Daniel Roe (Oct 25, 2024, 4:08 PM +0100) 87e30c92 dfe2ad93

+32
+32
.github/workflows/ci.yml
··· 1 + name: ci 2 + 3 + on: 4 + push: 5 + branches: 6 + - main 7 + - renovate/ 8 + pull_request: 9 + branches: 10 + - main 11 + 12 + concurrency: 13 + group: ${{ github.workflow }}-${{ github.event.number || github.sha }} 14 + cancel-in-progress: ${{ github.event_name != 'push' }} 15 + 16 + jobs: 17 + test: 18 + runs-on: ubuntu-latest 19 + 20 + steps: 21 + - uses: actions/checkout@v4 22 + - run: corepack enable 23 + - uses: actions/setup-node@v4 24 + with: 25 + node-version: "20" 26 + cache: "pnpm" 27 + 28 + - name: Install dependencies 29 + run: pnpm install --frozen-lockfile 30 + 31 + - name: Lint project 32 + run: pnpm lint