Skip to content

Claude optims

Claude optims #1054

Workflow file for this run

name: CI
on:
push:
branches: ['main']
pull_request:
types: [opened, synchronize, reopened]
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
lint:
name: πŸ’„ Prettier
runs-on: ubuntu-latest
steps:
- name: ⬇️ Checkout repo
uses: actions/checkout@v5
- name: βŽ” Setup node
uses: actions/setup-node@v5
with:
node-version: 22
package-manager-cache: false
- name: βŽ” Set up pnpm
uses: pnpm/action-setup@v4
- name: πŸ“₯ Download deps
run: pnpm install
- name: πŸ’„ Prettier
run: pnpm run prettier:check
test:
name: πŸ§ͺ Tests
runs-on: ubuntu-latest
needs: [lint]
strategy:
matrix:
node: [22, 24]
steps:
- name: ⬇️ Checkout repo
uses: actions/checkout@v5
- name: βŽ” Setup node
uses: actions/setup-node@v5
with:
node-version: ${{ matrix.node }}
package-manager-cache: false
- name: βŽ” Set up pnpm
uses: pnpm/action-setup@v4
- name: πŸ“₯ Download deps
run: |
echo ::group::..:: Mono Repo Tests ::..
pnpm install && pnpm run build
echo ::endgroup::
- name: πŸ„ Run the tests
env:
CRYSTALLIZE_TENANT_ID: 6890ca9cd065ed6bcafdf9e5
CRYSTALLIZE_TENANT_IDENTIFIER: js-api-client-integration-tests
CRYSTALLIZE_ACCESS_TOKEN_ID: ${{ secrets.CRYSTALLIZE_ACCESS_TOKEN_ID }}
CRYSTALLIZE_ACCESS_TOKEN_SECRET: ${{ secrets.CRYSTALLIZE_ACCESS_TOKEN_SECRET }}
run: |
echo ::group::..:: Mono Repo Tests ::..
pnpm run test
echo ::endgroup::
sync:
name: 🍿 Sync Doc to Crystallize
if: github.event_name == 'push' && github.ref_name == 'main'
runs-on: ubuntu-latest
needs: [lint, test]
steps:
- name: ⬇️ Checkout repo
uses: actions/checkout@v5
- name: βŽ” Setup node
uses: actions/setup-node@v5
with:
node-version: 22
package-manager-cache: false
- name: βŽ” Set up pnpm
uses: pnpm/action-setup@v4
- name: πŸ“₯ Download deps
run: pnpm install && pnpm run build
- name: πŸš€ Sync it!
env:
MARKDOWN_TO_CRYSTALLIZE_SHARED_KEY: ${{ secrets.MARKDOWN_TO_CRYSTALLIZE_SHARED_KEY }}
run: |
for COMPONENT in `ls components`; do
if [ -d "components/${COMPONENT}" ]; then
echo ::group::..:: ${COMPONENT} ::..
node apps/doc2crystallize/build/index.js components/${COMPONENT}/README.md
echo ::endgroup::
fi
done