Add Explorium as alternative data supplier for prospect lists #47
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: CI | |
| on: | |
| push: | |
| branches-ignore: [] # run CI on every branch push | |
| pull_request: # run CI on every PR (regardless of target branch) | |
| jobs: | |
| ci: | |
| name: Lint · Type-check · Build | |
| runs-on: ubuntu-latest | |
| timeout-minutes: 15 | |
| steps: | |
| # ── Checkout ────────────────────────────────────────────────────────── | |
| - name: Checkout | |
| uses: actions/checkout@v4 | |
| # ── pnpm ────────────────────────────────────────────────────────────── | |
| # Install pnpm before Node so the cache step works correctly | |
| - name: Setup pnpm | |
| uses: pnpm/action-setup@v3 | |
| with: | |
| version: 9 | |
| # ── Node + pnpm cache ────────────────────────────────────────────────── | |
| - name: Setup Node.js | |
| uses: actions/setup-node@v4 | |
| with: | |
| node-version: '20' | |
| cache: 'pnpm' | |
| # ── Install ──────────────────────────────────────────────────────────── | |
| # --frozen-lockfile = fail if pnpm-lock.yaml is out of date | |
| - name: Install dependencies | |
| run: pnpm install --frozen-lockfile | |
| # ── Lint ─────────────────────────────────────────────────────────────── | |
| - name: Lint | |
| run: pnpm run lint | |
| # ── Type-check ───────────────────────────────────────────────────────── | |
| - name: Type-check | |
| run: pnpm run type-check | |
| # ── Build ────────────────────────────────────────────────────────────── | |
| - name: Build | |
| run: pnpm run build | |
| # ── Security audit ───────────────────────────────────────────────────── | |
| - name: Audit dependencies | |
| run: pnpm audit --audit-level=high | |
| continue-on-error: true |