Skip to content

refactor(seo): removed no longer used /docs from robots.txt (#253) #477

refactor(seo): removed no longer used /docs from robots.txt (#253)

refactor(seo): removed no longer used /docs from robots.txt (#253) #477

Workflow file for this run

name: CI - Lib
on:
pull_request:
push:
branches:
- main
jobs:
ci-cli:
name: CI - Lib
runs-on: ubuntu-latest
defaults:
run:
working-directory: packages/cli
steps:
- uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4
- run: corepack enable
- uses: actions/setup-node@v4
with:
node-version: 22
corepack: true
cache: 'pnpm'
- name: Install dependencies
run: pnpm i
working-directory: ./
- name: Run linters
run: pnpm lint
- name: Type check
run: pnpm typecheck
# - name: Run unit test
# run: pnpm test
- name: Build the lib
run: pnpm build